Browse Source

2025-09-15

1、制造工具这个框也固定下,分辨率高了一条都不显示
2、工具编码不能模糊查询
3、工具实例不随着工具编码变化(查询后,下面的页签没有同步刷新)
master
fengyuan_yang 4 months ago
parent
commit
ebcf2ddce6
  1. 4
      src/main/java/com/spring/modules/Tooling/dao/impl/ToolDaoImpl.java

4
src/main/java/com/spring/modules/Tooling/dao/impl/ToolDaoImpl.java

@ -45,11 +45,11 @@ public class ToolDaoImpl implements ToolDao {
paramMap.put("site", site); paramMap.put("site", site);
} }
if(!(null == toolId || "".equals(toolId))){ if(!(null == toolId || "".equals(toolId))){
sql.append(" AND th.tool_id = :toolId");
sql.append(" AND th.tool_id like :toolId");
paramMap.put("toolId", toolId); paramMap.put("toolId", toolId);
} }
if(!(null == toolType || "".equals(toolType))){ if(!(null == toolType || "".equals(toolType))){
sql.append(" AND th.c_tool_type = :toolType");
sql.append(" AND th.c_tool_type like :toolType");
paramMap.put("toolType", toolType); paramMap.put("toolType", toolType);
} }
if(!(null == calendarId || "".equals(calendarId))){ if(!(null == calendarId || "".equals(calendarId))){

Loading…
Cancel
Save