|
@@ -26,6 +26,7 @@
|
|
|
<result column="VOD_MODIFY_TIME" jdbcType="VARCHAR" property="modifyTime" />
|
|
|
<result column="VOD_DELIVERY_ID" jdbcType="VARCHAR" property="deliveryId" />
|
|
|
<result column="VOD_IS_DELIVERY" jdbcType="VARCHAR" property="isDelivery" />
|
|
|
+ <result column="VOD_PICKUP_TIME" jdbcType="VARCHAR" property="pickupTime" />
|
|
|
</resultMap>
|
|
|
<sql id="Example_Where_Clause">
|
|
|
<!--
|
|
@@ -101,7 +102,7 @@
|
|
|
VOD_DETAILS_ID, VOD_CHANNEL, VOD_ORDER_ID, VOD_PRO_EQU_REL_ID, VOD_CARGO_WAY, VOD_PRODUCT_ID,
|
|
|
VOD_PRO_TYPE, VOD_PRO_NAME, VOD_PRO_PRICE, VOD_PRO_NUMS, VOD_AMOUNT, VOD_RECORD_ID,
|
|
|
VOD_REMARKS, VOD_IS_WINNING, VOD_CREATE_USER, VOD_CREATE_TIME, VOD_MODIFY_USER, VOD_MODIFY_TIME,
|
|
|
- VOD_DELIVERY_ID, VOD_IS_DELIVERY
|
|
|
+ VOD_DELIVERY_ID, VOD_IS_DELIVERY, VOD_PICKUP_TIME
|
|
|
</sql>
|
|
|
<select id="selectByExample" parameterType="com.minpay.db.table.model.VmOrderDetailsExample" resultMap="BaseResultMap">
|
|
|
<!--
|
|
@@ -160,14 +161,16 @@
|
|
|
VOD_PRO_NUMS, VOD_AMOUNT, VOD_RECORD_ID,
|
|
|
VOD_REMARKS, VOD_IS_WINNING, VOD_CREATE_USER,
|
|
|
VOD_CREATE_TIME, VOD_MODIFY_USER, VOD_MODIFY_TIME,
|
|
|
- VOD_DELIVERY_ID, VOD_IS_DELIVERY)
|
|
|
+ VOD_DELIVERY_ID, VOD_IS_DELIVERY, VOD_PICKUP_TIME
|
|
|
+ )
|
|
|
values (#{detailsId,jdbcType=VARCHAR}, #{channel,jdbcType=VARCHAR}, #{orderId,jdbcType=VARCHAR},
|
|
|
#{proEquRelId,jdbcType=VARCHAR}, #{cargoWay,jdbcType=VARCHAR}, #{productId,jdbcType=VARCHAR},
|
|
|
#{proType,jdbcType=VARCHAR}, #{proName,jdbcType=VARCHAR}, #{proPrice,jdbcType=VARCHAR},
|
|
|
#{proNums,jdbcType=VARCHAR}, #{amount,jdbcType=VARCHAR}, #{recordId,jdbcType=VARCHAR},
|
|
|
#{remarks,jdbcType=VARCHAR}, #{isWinning,jdbcType=VARCHAR}, #{createUser,jdbcType=VARCHAR},
|
|
|
#{createTime,jdbcType=VARCHAR}, #{modifyUser,jdbcType=VARCHAR}, #{modifyTime,jdbcType=VARCHAR},
|
|
|
- #{deliveryId,jdbcType=VARCHAR}, #{isDelivery,jdbcType=VARCHAR})
|
|
|
+ #{deliveryId,jdbcType=VARCHAR}, #{isDelivery,jdbcType=VARCHAR}, #{pickupTime,jdbcType=VARCHAR}
|
|
|
+ )
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.minpay.db.table.model.VmOrderDetails">
|
|
|
<!--
|
|
@@ -236,6 +239,9 @@
|
|
|
<if test="isDelivery != null">
|
|
|
VOD_IS_DELIVERY,
|
|
|
</if>
|
|
|
+ <if test="pickupTime != null">
|
|
|
+ VOD_PICKUP_TIME,
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="detailsId != null">
|
|
@@ -298,6 +304,9 @@
|
|
|
<if test="isDelivery != null">
|
|
|
#{isDelivery,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="pickupTime != null">
|
|
|
+ #{pickupTime,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
<select id="countByExample" parameterType="com.minpay.db.table.model.VmOrderDetailsExample" resultType="java.lang.Integer">
|
|
@@ -377,6 +386,9 @@
|
|
|
<if test="record.isDelivery != null">
|
|
|
VOD_IS_DELIVERY = #{record.isDelivery,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="record.pickupTime != null">
|
|
|
+ VOD_PICKUP_TIME = #{record.pickupTime,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
</set>
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
@@ -407,7 +419,8 @@
|
|
|
VOD_MODIFY_USER = #{record.modifyUser,jdbcType=VARCHAR},
|
|
|
VOD_MODIFY_TIME = #{record.modifyTime,jdbcType=VARCHAR},
|
|
|
VOD_DELIVERY_ID = #{record.deliveryId,jdbcType=VARCHAR},
|
|
|
- VOD_IS_DELIVERY = #{record.isDelivery,jdbcType=VARCHAR}
|
|
|
+ VOD_IS_DELIVERY = #{record.isDelivery,jdbcType=VARCHAR},
|
|
|
+ VOD_PICKUP_TIME = #{record.pickupTime,jdbcType=VARCHAR}
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
</if>
|
|
@@ -476,6 +489,9 @@
|
|
|
<if test="isDelivery != null">
|
|
|
VOD_IS_DELIVERY = #{isDelivery,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="pickupTime != null">
|
|
|
+ VOD_PICKUP_TIME = #{pickupTime,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
</set>
|
|
|
where VOD_DETAILS_ID = #{detailsId,jdbcType=VARCHAR}
|
|
|
</update>
|
|
@@ -503,7 +519,8 @@
|
|
|
VOD_MODIFY_USER = #{modifyUser,jdbcType=VARCHAR},
|
|
|
VOD_MODIFY_TIME = #{modifyTime,jdbcType=VARCHAR},
|
|
|
VOD_DELIVERY_ID = #{deliveryId,jdbcType=VARCHAR},
|
|
|
- VOD_IS_DELIVERY = #{isDelivery,jdbcType=VARCHAR}
|
|
|
+ VOD_IS_DELIVERY = #{isDelivery,jdbcType=VARCHAR},
|
|
|
+ VOD_PICKUP_TIME = #{pickupTime,jdbcType=VARCHAR}
|
|
|
where VOD_DETAILS_ID = #{detailsId,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
</mapper>
|