mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
update 订单列表添加车牌号字段
This commit is contained in:
@@ -21,6 +21,7 @@
|
||||
<result property="payStatus" column="pay_status"/>
|
||||
<result property="payAmount" column="pay_amount"/>
|
||||
<result property="payTime" column="pay_time"/>
|
||||
<result property="plateNumber" column="plate_number"/>
|
||||
<result property="orderAmount" column="order_amount"/>
|
||||
<result property="virtualAmount" column="virtual_amount"/>
|
||||
<result property="settleAmount" column="settle_amount"/>
|
||||
@@ -104,6 +105,7 @@
|
||||
pay_status,
|
||||
pay_amount,
|
||||
pay_time,
|
||||
plate_number,
|
||||
order_amount,
|
||||
virtual_amount,
|
||||
settle_amount,
|
||||
@@ -351,6 +353,9 @@
|
||||
<if test="payTime != null">
|
||||
pay_time,
|
||||
</if>
|
||||
<if test="plateNumber != null">
|
||||
plate_number,
|
||||
</if>
|
||||
<if test="orderAmount != null">
|
||||
order_amount,
|
||||
</if>
|
||||
@@ -452,6 +457,9 @@
|
||||
<if test="payTime != null">
|
||||
#{payTime},
|
||||
</if>
|
||||
<if test="plateNumber != null">
|
||||
#{plateNumber},
|
||||
</if>
|
||||
<if test="orderAmount != null">
|
||||
#{orderAmount},
|
||||
</if>
|
||||
@@ -554,6 +562,9 @@
|
||||
<if test="payTime != null">
|
||||
pay_time = #{payTime},
|
||||
</if>
|
||||
<if test="plateNumber != null">
|
||||
plate_number = #{plateNumber},
|
||||
</if>
|
||||
<if test="orderAmount != null">
|
||||
order_amount = #{orderAmount},
|
||||
</if>
|
||||
|
||||
Reference in New Issue
Block a user