更新工单信息查询

This commit is contained in:
panshuling321 2022-05-18 10:08:32 +08:00
parent b1e31ec089
commit fc9cfe0a5a
2 changed files with 1 additions and 2 deletions

View File

@ -89,7 +89,6 @@ public class WorkStationController extends BaseController {
String stationName,
String terminalName) {
startPage();
LoginUser logUser = logUserUtils.getLogUser(request);
Map<String, Object> params = new HashMap<>();
params.put("stationName", stationName);

View File

@ -93,7 +93,7 @@ public class WorkStationServiceImpl implements WorkStationService {
Map<String, Object> stationParams = new HashMap<>();
stationParams.put("name", params.get("stationName"));
stationParams.put("tenantId", params.get("tenantId"));
stationParams.put("status", 1);
stationParams.put("status", 0);
stationParams.put("delFlag", 0);
List<Map<String, Object>> stationDomainList = stationMapper.selectMapListByParams(stationParams);