njzscloud-dispose/njzscloud-svr/src/main/resources/mapper/cst/orderTrans/OrderTransMapper.xml

59 lines
3.3 KiB
XML

<?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.njzscloud.dispose.cst.orderTrans.mapper.OrderTransMapper">
<resultMap id="BaseResultMap" type="com.njzscloud.dispose.cst.orderTrans.pojo.entity.OrderTransEntity">
<id column="id" property="id"/>
<result column="train_num" property="trainNum"/>
<result column="order_id" property="orderId"/>
<result column="station_id" property="stationId"/>
<result column="trans_status" property="transStatus"/>
<result column="lane" property="lane"/>
<result column="assignment_driver_time" property="assignmentDriverTime"/>
<result column="driver_confirm_time" property="driverConfirmTime"/>
<result column="trans_time" property="transTime"/>
<result column="finish_time" property="finishTime"/>
<result column="checker_id" property="checkerId"/>
<result column="check_status" property="checkStatus"/>
<result column="check_time" property="checkTime"/>
<result column="check_photo" property="checkPhoto"/>
<result column="checker_memo" property="checkerMemo"/>
<result column="driver_id" property="driverId"/>
<result column="driver_customer_id" property="driverCustomerId"/>
<result column="driver_user_id" property="driverUserId"/>
<result column="truck_customer_id" property="truckCustomerId"/>
<result column="truck_org_id" property="truckOrgId"/>
<result column="truck_id" property="truckId"/>
<result column="truck_license_plate" property="truckLicensePlate"/>
<result column="history_tare_weight" property="historyTareWeight"/>
<result column="rough_weight" property="roughWeight"/>
<result column="tare_weight" property="tareWeight"/>
<result column="settle_weight" property="settleWeight"/>
<result column="trans_distance" property="transDistance"/>
<result column="in_front_photo" property="inFrontPhoto"/>
<result column="in_body_photo" property="inBodyPhoto"/>
<result column="out_front_photo" property="outFrontPhoto"/>
<result column="out_body_photo" property="outBodyPhoto"/>
<result column="in_time" property="inTime"/>
<result column="out_time" property="outTime"/>
<result column="creator_id" property="creatorId"/>
<result column="modifier_id" property="modifierId"/>
<result column="create_time" property="createTime"/>
<result column="modify_time" property="modifyTime"/>
<result column="deleted" property="deleted"/>
</resultMap>
<sql id="Base_Column_List">
id, train_num, order_id, station_id, trans_status, lane,
assignment_driver_time, driver_confirm_time, trans_time, finish_time,
checker_id, check_status, check_time, check_photo, checker_memo,
driver_id, driver_customer_id, driver_user_id, truck_customer_id,
truck_org_id, truck_id, truck_license_plate, history_tare_weight,
rough_weight, tare_weight, settle_weight, trans_distance,
in_front_photo, in_body_photo, out_front_photo, out_body_photo,
in_time, out_time, creator_id, modifier_id, create_time, modify_time, deleted
</sql>
</mapper>