Commit 28a6d54cdde4148bf886bd3dac0e5c6f0c891a58

Authored by guzijian
1 parent cbfd2163

fix: 修复查询bug

Bsth-admin/src/main/java/com/ruoyi/service/impl/BigViewServiceImpl.java
... ... @@ -73,7 +73,7 @@ public class BigViewServiceImpl implements BigViewService {
73 73 List<FleetInfoVo> fleetInfoVos = handleFleetWithLinePersonInfo(matchMap, mapVo);
74 74 // 特殊处理 处理进博会线路信息
75 75 if (LocalDate.now().toString().compareTo("2023-11-12") < 0){
76   - specialTreatment(fleetInfoVos);
  76 +// specialTreatment(fleetInfoVos);
77 77 }
78 78 return fleetInfoVos;
79 79 }
... ...
Bsth-admin/src/main/resources/mapper/RuleNumSettingMapper.xml
... ... @@ -61,11 +61,11 @@
61 61 FROM
62 62 rule_setting_driver
63 63 WHERE
64   - job_code = #{jocCode}
  64 + job_code = #{jobCode}
65 65 LIMIT 1)
66 66 </if>
67 67 <if test="ruleDictName != null and ruleDictName != ''">
68   - and rule_dict_name = #{ruleDictName}
  68 + and setting.rule_dict_name = #{ruleDictName}
69 69 </if>
70 70 </select>
71 71 <select id="getPeopleList" resultType="com.ruoyi.pojo.dto.AttendanceDto" resultMap="AttendanceResult">
... ...