选择商品增加组织权限

采购审核通过推送入库预约记录
查询所有员工接口调整
This commit is contained in:
God
2024-07-29 15:14:58 +08:00
parent 0160b1d261
commit 708346eb76

View File

@@ -155,7 +155,7 @@ public class SysStaffOrgRest {
@GetMapping("/selAllByOrgSidPath")
@ResponseBody
@ApiOperation("根据组织全路径查询当前部门下的所有员工")
public ResultBean<List<SysStaffOrgByUserVo>> selAllByOrgSidPath(String orgSidPath) {
public ResultBean<List<SysStaffOrgByUserVo>> selAllByOrgSidPath(@RequestParam(value = "orgSidPath") String orgSidPath) {
return sysStaffOrgService.selAllByOrgSidPath(orgSidPath);
}