李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
<?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.chinaztt.mes.quality.mapper.ZxWeightLabelMapper">
    <resultMap id="ZxWeightLabelMap" type="com.chinaztt.mes.quality.entity.ZxWeightLabel">
        <id property="id" column="id"/>
        <result property="createTime" column="create_time"/>
        <result property="updateTime" column="update_time"/>
        <result property="createUser" column="create_user"/>
        <result property="updateUser" column="update_user"/>
        <result property="shopCode" column="shop_code"/>
        <result property="pkgCode" column="pkg_code"/>
        <result property="pkgId" column="pkg_id"/>
        <result property="quantity" column="quantity"/>
        <result property="packSize" column="pack_size"/>
        <result property="packMaterial" column="pack_material"/>
        <result property="packWeight" column="pack_weight"/>
        <result property="grossWeight" column="gross_weight"/>
        <result property="netWeight" column="net_weight"/>
        <result property="materialCode" column="material_code"/>
        <result property="theoryWeight" column="theory_weight"/>
        <result property="meterWeight" column="meter_weight"/>
    </resultMap>
 
</mapper>