|
|
@@ -28,11 +28,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="beentrustName" column="beentrust_Name" />
|
|
|
<result property="bId" column="b_Id" />
|
|
|
<result property="carNumber" column="car_Number" />
|
|
|
- <result property="run_time" column="run_time" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectOrderFileVo">
|
|
|
- select order_id,delivery_number,shipment_number,ware_house_code,ware_house_name,code,message, flow_id,chains_code,customers_code,signer_id,signer_name, file_url, create_by, create_time, update_by, update_time, is_delete ,entrust_Name,beentrust_Name,b_Id,car_Number,run_time from ssb_order_file
|
|
|
+ select order_id,delivery_number,shipment_number,ware_house_code,ware_house_name,code,message, flow_id,chains_code,customers_code,signer_id,signer_name, file_url, create_by, create_time, update_by, update_time, is_delete ,entrust_Name,beentrust_Name,b_Id,car_Number from ssb_order_file
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectOrderFileList" parameterType="OrderFile" resultMap="OrderFileResult">
|
|
|
@@ -53,7 +52,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
of.beentrust_Name,
|
|
|
of.b_Id,
|
|
|
of.car_Number,
|
|
|
- of.run_time,
|
|
|
c.chains_name AS chainsName
|
|
|
FROM
|
|
|
ssb_order_file AS of
|
|
|
@@ -110,7 +108,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="beentrustName != null">beentrust_Name,</if>
|
|
|
<if test="bId != null">b_Id,</if>
|
|
|
<if test="carNumber != null">car_Number,</if>
|
|
|
- <if test="run_time != null">#{run_time},</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="orderId != null">#{orderId},</if>
|
|
|
@@ -135,7 +132,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="beentrustName != null">#{beentrustName},</if>
|
|
|
<if test="bId != null">#{bId},</if>
|
|
|
<if test="carNumber != null">#{carNumber},</if>
|
|
|
- <if test="run_time != null">#{run_time},</if>
|
|
|
+
|
|
|
</trim>
|
|
|
</insert>
|
|
|
|