设备导入修改及最新值

This commit is contained in:
wanghao
2025-12-17 13:21:42 +08:00
parent a972e556d9
commit da9169f774
17 changed files with 108 additions and 11 deletions
@@ -285,6 +285,11 @@ public class SystemApiController {
return sysBaseApi.getUserByIdCardList(listUser);
}
@PostMapping("getUserListByWorkNoList")
List<SysUser> getUserByIdCardList(@RequestParam(name = "workNoList") List<String> workNoList){
return sysBaseApi.getUserListByWorkNoList(workNoList);
}
/**
* 发送系统消息
@@ -2388,4 +2388,12 @@ public class SysBaseApiImpl implements ISysBaseAPI {
sendBusSms(data);
});
}
public List<SysUser> getUserListByWorkNoList(List<String> workNoList){
return sysUserMapper.selectList(new LambdaQueryWrapper<SysUser>()
.in(SysUser::getWorkNo, workNoList)
.eq(SysUser::getPersonType,1)
.eq(SysUser::getDelFlag,0)
.eq(SysUser::getStatus,1));
}
}