liujie
2023-08-31 a0afbd1e36f74cb521c4d51b08a54f6a1fe538f2
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.stylefeng.guns.modular.system.dao.TGoodsMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.stylefeng.guns.modular.system.model.TGoods">
        <id column="id" property="id" />
        <result column="order_id" property="orderId" />
        <result column="shipping_line" property="shippingLine" />
        <result column="danger" property="danger" />
        <result column="weight" property="weight" />
        <result column="kg" property="kg" />
        <result column="size" property="size" />
        <result column="type" property="type" />
        <result column="type_class" property="typeClass" />
        <result column="container_number" property="containerNumber" />
        <result column="bill_number" property="billNumber" />
        <result column="our_ref" property="ourRef" />
        <result column="sb" property="sb" />
        <result column="entry" property="entry" />
        <result column="po" property="po" />
        <result column="cust_ref" property="custRef" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, order_id, shipping_line, danger, weight, kg, size, type, type_class, container_number, bill_number, our_ref, sb, entry, po, cust_ref
    </sql>
 
</mapper>