From 3d35107e249008c113ea7b9996cecc39c6e1418a Mon Sep 17 00:00:00 2001 From: zhanglipeng Date: Sun, 5 Sep 2021 17:34:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=91=A8=E8=AE=A1=E5=88=92=E5=AD=90=E9=A1=B9?= =?UTF-8?q?=E7=A6=81=E6=AD=A2=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../benyi/controller/ByThemeMonthplanitemController.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByThemeMonthplanitemController.java b/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByThemeMonthplanitemController.java index 7f6a52cb7..3bcf64c0d 100644 --- a/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByThemeMonthplanitemController.java +++ b/ruoyi/src/main/java/com/ruoyi/project/benyi/controller/ByThemeMonthplanitemController.java @@ -52,7 +52,7 @@ public class ByThemeMonthplanitemController extends BaseController { * 导出主题整合周计划列表 */ @PreAuthorize("@ss.hasPermi('benyi:thememonthplan:export')") - @Log(title = "主题整合周计划", businessType = BusinessType.EXPORT) + @Log(title = "主题整合月计划", businessType = BusinessType.EXPORT) @GetMapping("/export") public AjaxResult export(ByThemeMonthplanitem byThemeMonthplanitem) { List list = byThemeWeekplanService.selectByThemeMonthplanitemList(byThemeMonthplanitem); @@ -73,7 +73,7 @@ public class ByThemeMonthplanitemController extends BaseController { * 新增主题整合周计划 */ @PreAuthorize("@ss.hasPermi('benyi:thememonthplan:add')") - @Log(title = "主题整合周计划", businessType = BusinessType.INSERT) + @Log(title = "主题整合月计划", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody ByThemeMonthplanitem byThemeMonthplanitem) { String uuid = schoolCommon.getUuid(); @@ -86,7 +86,7 @@ public class ByThemeMonthplanitemController extends BaseController { * 修改主题整合周计划 */ @PreAuthorize("@ss.hasPermi('benyi:thememonthplan:edit')") - @Log(title = "主题整合周计划", businessType = BusinessType.UPDATE) + @Log(title = "主题整合月计划", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody ByThemeMonthplanitem byThemeMonthplanitem) { return toAjax(byThemeWeekplanService.updateByThemeMonthplanitem(byThemeMonthplanitem)); @@ -96,7 +96,7 @@ public class ByThemeMonthplanitemController extends BaseController { * 删除主题整合周计划 */ @PreAuthorize("@ss.hasPermi('benyi:thememonthplan:remove')") - @Log(title = "主题整合周计划", businessType = BusinessType.DELETE) + @Log(title = "主题整合月计划", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable String[] ids) { return toAjax(byThemeWeekplanService.deleteByThemeMonthplanitemByIds(ids));