|
|
@@ -42,6 +42,13 @@ public class CoreNoticeRuleController {
|
|
|
return AjaxResult.success(coreNoticeRuleService.selectUserList(dto));
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "查询机构下用户")
|
|
|
+ //@RequiresPermissions("core:noticeRule:getSelectUser")
|
|
|
+ @GetMapping("/getSelectUser/{orgId}")
|
|
|
+ public AjaxResult getSelectUserByOrgId(@PathVariable Long orgId) throws InterruptedException {
|
|
|
+ return AjaxResult.success(coreNoticeRuleService.selectUserListByOrgId(orgId));
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "查询传感器类型")
|
|
|
//@RequiresPermissions("core:noticeRule:getSelectUser")
|
|
|
@GetMapping("/getSelectProductType")
|