占桩订单表添加车牌号字段

This commit is contained in:
Lemon
2024-01-09 17:30:30 +08:00
parent 5c5ca93111
commit 60f912a67a
5 changed files with 22 additions and 8 deletions

View File

@@ -978,6 +978,7 @@
t1.STATUS,
t1.member_id AS memberId,
t1.station_id AS stationId,
t1.plate_number as plateNumber,
t2.station_name AS stationName,
t1.start_time AS startTime,
t1.end_time AS endTime,
@@ -993,6 +994,8 @@
<if test="occupyCode != null and occupyCode != ''"> and t1.occupy_code = #{occupyCode}</if>
<if test="memberId != null and memberId != ''"> and t1.member_id = #{memberId}</if>
<if test="stationId != null and stationId != ''"> and t1.station_id = #{stationId}</if>
<if test="plateNumber != null and plateNumber != ''"> and t1.plate_number = #{plateNumber}</if>
<if test="status != null and status != ''"> and t1.status = #{status}</if>
<if test="startTime != null "> and t1.start_time = #{startTime}</if>
<if test="orderAmount != null "> and t1.order_amount = #{orderAmount}</if>
<if test="pileSn != null and pileSn != ''"> and t1.pile_sn = #{pileSn}</if>