liyong
2026-05-15 0578c6c76f13e367b5dc7d0882efe3c69ca4cb0e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.stock.mapper.StockInventoryCheckMainMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ruoyi.stock.pojo.StockInventoryCheckMain">
        <id column="id" property="id" />
        <result column="check_no" property="checkNo" />
        <result column="check_type" property="checkType" />
        <result column="total_quantity" property="totalQuantity" />
        <result column="source_type" property="sourceType" />
        <result column="source_id" property="sourceId" />
        <result column="status" property="status" />
        <result column="check_date" property="checkDate" />
        <result column="responsible_person_id" property="responsiblePersonId" />
        <result column="responsible_person_name" property="responsiblePersonName" />
        <result column="remark" property="remark" />
        <result column="create_time" property="createTime" />
        <result column="update_time" property="updateTime" />
    </resultMap>
 
</mapper>