This commit is contained in:
2023-11-23 11:51:43 +08:00
7 changed files with 116 additions and 45 deletions

View File

@@ -472,6 +472,12 @@
<if test="dto.address != null and dto.address != ''">
and t1.address like concat('%', #{dto.address}, '%')
</if>
<if test="dto.stationIds != null and dto.stationIds.size() != 0">
and t1.id in
<foreach collection="dto.stationIds" item="stationId" open="(" separator="," close=")">
#{stationId,jdbcType=VARCHAR}
</foreach>
</if>
</select>
<select id="queryByStationDeptIds" resultType="java.lang.String">