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:
@@ -370,8 +370,14 @@
|
||||
<if test="stationDTO.address != null and stationDTO.address != ''">
|
||||
and t1.address like concat('%', #{stationDTO.address,jdbcType=VARCHAR}, '%')
|
||||
</if>
|
||||
<if test="stationDTO.stationTel != null and stationDTO.stationTel != ''">
|
||||
and t1.station_tel = #{stationDTO.stationTel,jdbcType=VARCHAR}
|
||||
<if test="stationDTO.canopyFlag != null and stationDTO.canopyFlag != ''">
|
||||
and t1.canopy_flag = #{stationDTO.canopyFlag,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="stationDTO.barrierFlag != null and stationDTO.barrierFlag != ''">
|
||||
and t1.barrier_flag = #{stationDTO.barrierFlag,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="stationDTO.parkingLockFlag != null and stationDTO.parkingLockFlag != ''">
|
||||
and t1.parking_lock_flag = #{stationDTO.parkingLockFlag,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<!-- 数据范围过滤 -->
|
||||
<if test="stationDTO.merchantDeptIds != null and stationDTO.merchantDeptIds.size() != 0">
|
||||
|
||||
Reference in New Issue
Block a user