|
|
@@ -181,7 +181,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="posName != null and posName != ''">pos_name,</if>
|
|
|
<if test="foodAmount != null">food_amount,</if>
|
|
|
<if test="pickUpNum != null">pick_up_num,</if>
|
|
|
- <if test="pickUpTime != null">pick_up_time,</if>
|
|
|
+ <if test="pickUpTime != null and pickUpTime != ''">pick_up_time,</if>
|
|
|
<if test="reservePhone != null and reservePhone != ''">reserve_phone,</if>
|
|
|
<if test="isAccepted != null">is_accepted,</if>
|
|
|
<if test="isDisplay != null">is_display,</if>
|
|
|
@@ -221,7 +221,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="posName != null and posName != ''">#{posName},</if>
|
|
|
<if test="foodAmount != null">#{foodAmount},</if>
|
|
|
<if test="pickUpNum != null">#{pickUpNum},</if>
|
|
|
- <if test="pickUpTime != null">#{pickUpTime},</if>
|
|
|
+ <if test="pickUpTime != null and pickUpTime != ''">#{pickUpTime},</if>
|
|
|
<if test="reservePhone != null and reservePhone != ''">#{reservePhone},</if>
|
|
|
<if test="isAccepted != null">#{isAccepted},</if>
|
|
|
<if test="isDisplay != null">#{isDisplay},</if>
|
|
|
@@ -267,7 +267,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="posName != null and posName != ''">pos_name = #{posName},</if>
|
|
|
<if test="foodAmount != null">food_amount = #{foodAmount},</if>
|
|
|
<if test="pickUpNum != null">pick_up_num = #{pickUpNum},</if>
|
|
|
- <if test="pickUpTime != null">pick_up_time = #{pickUpTime},</if>
|
|
|
+ <if test="pickUpTime != null and pickUpTime != ''">pick_up_time = #{pickUpTime},</if>
|
|
|
<if test="reservePhone != null and reservePhone != ''">reserve_phone = #{reservePhone},</if>
|
|
|
<if test="isAccepted != null">is_accepted = #{isAccepted},</if>
|
|
|
<if test="isDisplay != null">is_display = #{isDisplay},</if>
|