| | |
| | | import com.dy.common.webUtil.BaseResponseUtils; |
| | | import com.dy.common.webUtil.QueryResultVo; |
| | | import com.dy.pmsGlobal.aop.Log; |
| | | import com.dy.pmsGlobal.pojoBa.BaUser; |
| | | import com.dy.pmsGlobal.pojoPr.PrSchedule; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import jakarta.validation.Valid; |
| | |
| | | QueryResultVo<List<PrSchedule>> list = sv.selectSome(vo) ; |
| | | return BaseResponseUtils.buildSuccess(list); |
| | | } |
| | | /** |
| | | * 根据ID查询 |
| | | * @return |
| | | */ |
| | | @GetMapping(path="getUserList") |
| | | @SsoPowerAop(power = "-1") |
| | | @Log("查询系统中操作人员信息") |
| | | public BaseResponse<List<BaUser>> getUserList(){ |
| | | List<BaUser> userList = sv.selectById(); |
| | | return BaseResponseUtils.buildSuccess(userList); |
| | | } |
| | | |
| | | |
| | | @PostMapping(path="export") |