mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-16 21:30:28 +08:00
update 修改查询停车减免接口字段
This commit is contained in:
@@ -31,6 +31,7 @@
|
||||
<result property="startTime" column="start_time" />
|
||||
<result property="endTime" column="end_time" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="mobileNumber" column="mobile_number" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectCarCouponRecordVo">
|
||||
@@ -143,11 +144,14 @@
|
||||
cpd.discount_value,
|
||||
cpd.start_time,
|
||||
cpd.end_time,
|
||||
DATE_FORMAT(ccr.create_time, '%Y-%m-%d %H:%i:%s') AS create_time
|
||||
DATE_FORMAT(ccr.create_time, '%Y-%m-%d %H:%i:%s') AS create_time,
|
||||
mb.mobile_number
|
||||
FROM
|
||||
car_coupon_record ccr
|
||||
INNER JOIN pile_station_info psi ON ccr.station_id = psi.id
|
||||
LEFT JOIN charge_parking_discount cpd ON ccr.station_id = cpd.station_id AND cpd.del_flag = '0'
|
||||
LEFT JOIN order_basic_info obi ON ccr.order_code = obi.order_code
|
||||
LEFT JOIN member_basic_info mb ON obi.member_id = mb.id
|
||||
<where>
|
||||
ccr.del_flag = '0'
|
||||
<if test="stationId != null">
|
||||
|
||||
Reference in New Issue
Block a user