订单主表加字段 启动类型 预约时间

This commit is contained in:
2023-03-24 15:55:54 +08:00
parent 6772cf3de0
commit a624d492ea
3 changed files with 68 additions and 0 deletions

View File

@@ -21,6 +21,8 @@
<result property="orderAmount" column="order_amount"/>
<result property="chargeStartTime" column="charge_start_time"/>
<result property="chargeEndTime" column="charge_end_time"/>
<result property="startType" column="start_type"/>
<result property="appointmentTime" column="appointment_time"/>
<result property="startSOC" column="start_soc"/>
<result property="endSOC" column="end_soc"/>
<result property="reason" column="reason"/>
@@ -96,6 +98,8 @@
order_amount,
charge_start_time,
charge_end_time,
start_type,
appointment_time,
start_soc,
end_soc,
reason,
@@ -316,6 +320,12 @@
<if test="chargeEndTime != null">
charge_end_time,
</if>
<if test="startType != null">
start_type,
</if>
<if test="appointmentTime != null">
appointment_time,
</if>
<if test="startSOC != null">
start_soc,
</if>
@@ -396,6 +406,12 @@
<if test="chargeEndTime != null">
#{chargeEndTime},
</if>
<if test="startType != null">
#{startType},
</if>
<if test="appointmentTime != null">
#{appointmentTime},
</if>
<if test="startSOC != null">
#{startSOC},
</if>
@@ -477,6 +493,12 @@
<if test="chargeEndTime != null">
charge_end_time = #{chargeEndTime},
</if>
<if test="startType != null">
start_type = #{startType},
</if>
<if test="appointmentTime != null">
appointment_time = #{appointmentTime},
</if>
<if test="startSOC != null">
start_soc = #{startSOC},
</if>