无关风月
2024-12-09 2053b8fe0e98d4b4449bc756a93ced78f42277c4
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
31
32
<?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.jilongda.optometry.mapper.TOrderAccountingMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.jilongda.optometry.model.TOrderAccounting">
        <id column="id" property="id" />
        <result column="code" property="code" />
        <result column="orderId" property="orderId" />
        <result column="rLens" property="rLens" />
        <result column="lLens" property="lLens" />
        <result column="frame" property="frame" />
        <result column="createTime" property="createTime" />
        <result column="updateTime" property="updateTime" />
        <result column="createBy" property="createBy" />
        <result column="updateBy" property="updateBy" />
        <result column="isDelete" property="isDelete" />
        <result column="commission" property="commission" />
        <result column="rLensProfit" property="rLensProfit" />
        <result column="lLensProfit" property="lLensProfit" />
        <result column="frameProfit" property="frameProfit" />
        <result column="payMoney" property="payMoney" />
        <result column="profitMoney" property="profitMoney" />
        <result column="profitRating" property="profitRating" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, code, orderId, rLens, lLens, frame, createTime, updateTime, createBy, updateBy, isDelete, commission, rLensProfit, lLensProfit, frameProfit, payMoney, profitMoney, profitRating
    </sql>
 
</mapper>