设备导入修改及最新值
This commit is contained in:
+5
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 发送系统消息
|
||||
|
||||
+8
@@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user