xuhy
2024-05-15 7939ac40bc242bce6efb90970356ed977be6dd0e
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?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.TOrderTransferMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.stylefeng.guns.modular.system.model.TOrderTransfer">
        <id column="id" property="id" />
        <result column="type" property="type" />
        <result column="userId" property="userId" />
        <result column="driverId" property="driverId" />
        <result column="carId" property="carId" />
        <result column="orderNum" property="orderNum" />
        <result column="placementLon" property="placementLon" />
        <result column="placementLat" property="placementLat" />
        <result column="placementAddress" property="placementAddress" />
        <result column="startLon" property="startLon" />
        <result column="startLat" property="startLat" />
        <result column="endLon" property="endLon" />
        <result column="startAddress" property="startAddress" />
        <result column="endLat" property="endLat" />
        <result column="endAddress" property="endAddress" />
        <result column="boardingLon" property="boardingLon" />
        <result column="boardingLat" property="boardingLat" />
        <result column="boardingAddress" property="boardingAddress" />
        <result column="boardingTime" property="boardingTime" />
        <result column="getoffLon" property="getoffLon" />
        <result column="getoffLat" property="getoffLat" />
        <result column="getoffAddress" property="getoffAddress" />
        <result column="getoffTime" property="getoffTime" />
        <result column="mileage" property="mileage" />
        <result column="payManner" property="payManner" />
        <result column="payType" property="payType" />
        <result column="orderMoney" property="orderMoney" />
        <result column="startMoney" property="startMoney" />
        <result column="mileageMoney" property="mileageMoney" />
        <result column="durationMoney" property="durationMoney" />
        <result column="longDistanceMoney" property="longDistanceMoney" />
        <result column="parkMoney" property="parkMoney" />
        <result column="roadTollMoney" property="roadTollMoney" />
        <result column="redPacketMoney" property="redPacketMoney" />
        <result column="couponMoney" property="couponMoney" />
        <result column="redPacketId" property="redPacketId" />
        <result column="couponId" property="couponId" />
        <result column="discount" property="discount" />
        <result column="discountMoney" property="discountMoney" />
        <result column="activityId" property="activityId" />
        <result column="companyId" property="companyId" />
        <result column="payMoney" property="payMoney" />
        <result column="substitute" property="substitute" />
        <result column="passengers" property="passengers" />
        <result column="passengersPhone" property="passengersPhone" />
        <result column="state" property="state" />
        <result column="insertTime" property="insertTime" />
        <result column="travelTime" property="travelTime" />
        <result column="snatchOrderTime" property="snatchOrderTime" />
        <result column="setOutTime" property="setOutTime" />
        <result column="arriveTime" property="arriveTime" />
        <result column="startServiceTime" property="startServiceTime" />
        <result column="endServiceTime" property="endServiceTime" />
        <result column="orderType" property="orderType" />
        <result column="orderSource" property="orderSource" />
        <result column="invoiceId" property="invoiceId" />
        <result column="isReassign" property="isReassign" />
        <result column="reassignNotice" property="reassignNotice" />
        <result column="trackId" property="trackId" />
        <result column="isDelete" property="isDelete" />
        <result column="oldState" property="oldState" />
        <result column="telX" property="telX" />
        <result column="bindId" property="bindId" />
        <result column="serverCarModelId" property="serverCarModelId" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, type, userId, driverId, carId, orderNum, placementLon, placementLat, placementAddress, startLon, startLat, endLon, startAddress, endLat, endAddress, boardingLon, boardingLat, boardingAddress, boardingTime, getoffLon, getoffLat, getoffAddress, getoffTime, mileage, payManner, payType, orderMoney, startMoney, mileageMoney, durationMoney, longDistanceMoney, parkMoney, roadTollMoney, redPacketMoney, couponMoney, redPacketId, couponId, discount, discountMoney, activityId, companyId, payMoney, substitute, passengers, passengersPhone, state, insertTime, travelTime, snatchOrderTime, setOutTime, arriveTime, startServiceTime, endServiceTime, orderType, orderSource, invoiceId, isReassign, reassignNotice, trackId, isDelete, oldState, telX, bindId, serverCarModelId
    </sql>
 
 
</mapper>