| | |
| | | @PostMapping(path="some") |
| | | @SsoPowerAop(power = "10200008") |
| | | @Log("分页查询排班") |
| | | public BaseResponse<QueryResultVo<List<PrSchedule>>> some(@RequestBody com.dy.pmsProduct.schedule.QueryVo vo){ |
| | | public BaseResponse<QueryResultVo<List<PrSchedule>>> some(@RequestBody QueryVo vo){ |
| | | QueryResultVo<List<PrSchedule>> list = sv.selectSome(vo) ; |
| | | return BaseResponseUtils.buildSuccess(list); |
| | | } |
| | |
| | | @SsoPowerAop(power = "10200008") |
| | | @Log("查询系统中操作人员信息") |
| | | public BaseResponse<List<BaUser>> getUserList(){ |
| | | List<BaUser> userList = sv.selectById(); |
| | | List<BaUser> userList = sv.selectAllUsers(); |
| | | return BaseResponseUtils.buildSuccess(userList); |
| | | } |
| | | |