From a56fa75e2f5c7d4aefe63a6c0f81e69be281c59a Mon Sep 17 00:00:00 2001 From: zhanghl <253316343@qq.com> Date: 星期五, 18 四月 2025 17:33:24 +0800 Subject: [PATCH] work——order 同步零件工单数据ryTask准备 --- aps-modules/aps-job/src/main/java/com/aps/job/controller/SysJobController.java | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/aps-modules/aps-job/src/main/java/com/aps/job/controller/SysJobController.java b/aps-modules/aps-job/src/main/java/com/aps/job/controller/SysJobController.java index 5df334a..5616aa4 100644 --- a/aps-modules/aps-job/src/main/java/com/aps/job/controller/SysJobController.java +++ b/aps-modules/aps-job/src/main/java/com/aps/job/controller/SysJobController.java @@ -43,7 +43,7 @@ /** * 鏌ヨ瀹氭椂浠诲姟鍒楄〃 */ - @RequiresPermissions("monitor:job:list") + /* @RequiresPermissions("monitor:job:list")*/ @GetMapping("/list") public TableDataInfo list(SysJob sysJob) { @@ -55,7 +55,7 @@ /** * 瀵煎嚭瀹氭椂浠诲姟鍒楄〃 */ - @RequiresPermissions("monitor:job:export") + /*@RequiresPermissions("monitor:job:export")*/ @Log(title = "瀹氭椂浠诲姟", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, SysJob sysJob) @@ -68,7 +68,7 @@ /** * 鑾峰彇瀹氭椂浠诲姟璇︾粏淇℃伅 */ - @RequiresPermissions("monitor:job:query") + /*@RequiresPermissions("monitor:job:query")*/ @GetMapping(value = "/{jobId}") public AjaxResult getInfo(@PathVariable("jobId") Long jobId) { @@ -78,7 +78,7 @@ /** * 鏂板瀹氭椂浠诲姟 */ - @RequiresPermissions("monitor:job:add") + /* @RequiresPermissions("monitor:job:add")*/ @Log(title = "瀹氭椂浠诲姟", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody SysJob job) throws SchedulerException, TaskException @@ -114,7 +114,7 @@ /** * 淇敼瀹氭椂浠诲姟 */ - @RequiresPermissions("monitor:job:edit") + /* @RequiresPermissions("monitor:job:edit")*/ @Log(title = "瀹氭椂浠诲姟", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody SysJob job) throws SchedulerException, TaskException @@ -150,7 +150,7 @@ /** * 瀹氭椂浠诲姟鐘舵�佷慨鏀� */ - @RequiresPermissions("monitor:job:changeStatus") + /* @RequiresPermissions("monitor:job:changeStatus")*/ @Log(title = "瀹氭椂浠诲姟", businessType = BusinessType.UPDATE) @PutMapping("/changeStatus") public AjaxResult changeStatus(@RequestBody SysJob job) throws SchedulerException @@ -163,7 +163,7 @@ /** * 瀹氭椂浠诲姟绔嬪嵆鎵ц涓�娆� */ - @RequiresPermissions("monitor:job:changeStatus") + /* @RequiresPermissions("monitor:job:changeStatus")*/ @Log(title = "瀹氭椂浠诲姟", businessType = BusinessType.UPDATE) @PutMapping("/run") public AjaxResult run(@RequestBody SysJob job) throws SchedulerException @@ -175,7 +175,7 @@ /** * 鍒犻櫎瀹氭椂浠诲姟 */ - @RequiresPermissions("monitor:job:remove") + /* @RequiresPermissions("monitor:job:remove")*/ @Log(title = "瀹氭椂浠诲姟", businessType = BusinessType.DELETE) @DeleteMapping("/{jobIds}") public AjaxResult remove(@PathVariable Long[] jobIds) throws SchedulerException -- Gitblit v1.9.3