liding
2 天以前 f904274947d9a4bb44037e4d18a7d85c6aadaf7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?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.business.mapper.ProductionInventoryMapper">
 
        <!-- 通用查询映射结果 -->
        <resultMap id="BaseResultMap" type="com.ruoyi.business.entity.ProductionInventory">
                    <id column="id" property="id" />
                <result column="deleted" property="deleted" />
                <result column="create_by" property="createBy" />
                <result column="create_time" property="createTime" />
                <result column="update_by" property="updateBy" />
                <result column="update_time" property="updateTime" />
                    <result column="production_master_id" property="productionMasterId" />
                    <result column="coal_id" property="coalId" />
                    <result column="coal" property="coal" />
                    <result column="inventory_quantity" property="inventoryQuantity" />
                    <result column="used_quantity" property="usedQuantity" />
        </resultMap>
 
        <!-- 通用查询结果列 -->
        <sql id="Base_Column_List">
                deleted,
                create_by,
                create_time,
                update_by,
                update_time,
            id, production_master_id, coal_id, coal, inventory_quantity, used_quantity
        </sql>
 
</mapper>