流程新需求

This commit is contained in:
yuezhihang
2022-01-19 16:27:39 +08:00
parent a602c5fc3f
commit 07ce4f1866
@@ -97,5 +97,13 @@ public class TsUserController extends BaseController<TsUser> {
}
@ApiOperation("调研流程查询人 部门专用接口")
@GetMapping("/selectDeptByDY")
public ResponseMessage<List<TsUser>> selectDeptByDY(@Param("ids") String ids) throws Exception {
QueryWrapper<TsUser> queryWrapper=new QueryWrapper<>();
queryWrapper.in("USID",ids.split(","));
return Result.success(tsUserService.list(queryWrapper));
}
}