Browse Source

1.PDA到车列表时间查询bug修复

pre-production
zhenghaoyu 3 months ago
parent
commit
9d80d8f401
  1. 4
      blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.xml

4
blade-service/logpm-trunkline/src/main/java/com/logpm/trunkline/mapper/TrunklineCarsLoadMapper.xml

@ -464,10 +464,10 @@
and ltcl.load_status != '0' and ltcl.load_status != '0'
and ltcl.load_type != '4' and ltcl.load_type != '4'
<if test="param.startTime != null"> <if test="param.startTime != null">
and ltcl.start_time &gt;= #{param.startDate} and ltcl.start_time &gt;= #{param.startTime}
</if> </if>
<if test="param.endTime != null"> <if test="param.endTime != null">
and ltcl.start_time &lt;= #{param.endDate} and ltcl.start_time &lt;= #{param.endTime}
</if> </if>
</select> </select>

Loading…
Cancel
Save