From 61cd8da46195e98f3acaf1586956c1d7f2234070 Mon Sep 17 00:00:00 2001
From: zhanghl <253316343@qq.com>
Date: 星期四, 17 四月 2025 18:45:25 +0800
Subject: [PATCH] 增加日志表基础代码
---
aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java b/aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java
index 2bae436..7ae97dd 100644
--- a/aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java
+++ b/aps-modules/aps-core/src/main/java/com/aps/core/controller/ApsPlatePlanTempController.java
@@ -38,6 +38,7 @@
/**
* 鏌ヨ閽i噾璁″垝涓存椂琛ㄥ垪琛�
*/
+ @RequiresPermissions("apsPlatePlan:import")
@GetMapping("/list")
public TableDataInfo list(ApsPlatePlanTemp apsPlatePlanTemp)
{
@@ -48,7 +49,7 @@
/**
* 瀵煎嚭閽i噾璁″垝涓存椂琛ㄥ垪琛�
*/
- @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:export")
+ @RequiresPermissions("apsPlatePlanTemp:export")
@Log(title = "閽i噾璁″垝涓存椂琛�", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, ApsPlatePlanTemp apsPlatePlanTemp)
@@ -61,7 +62,7 @@
/**
* 鑾峰彇閽i噾璁″垝涓存椂琛ㄨ缁嗕俊鎭�
*/
- @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:query")
+ @RequiresPermissions("apsPlatePlanTemp:query")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") String id)
{
@@ -71,7 +72,7 @@
/**
* 鏂板閽i噾璁″垝涓存椂琛�
*/
- @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:add")
+ @RequiresPermissions("apsPlatePlanTemp:add")
@Log(title = "閽i噾璁″垝涓存椂琛�", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody ApsPlatePlanTemp apsPlatePlanTemp)
@@ -82,7 +83,7 @@
/**
* 淇敼閽i噾璁″垝涓存椂琛�
*/
- @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:edit")
+ @RequiresPermissions("apsPlatePlanTemp:edit")
@Log(title = "閽i噾璁″垝涓存椂琛�", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody ApsPlatePlanTemp apsPlatePlanTemp)
@@ -93,7 +94,7 @@
/**
* 鍒犻櫎閽i噾璁″垝涓存椂琛�
*/
- @RequiresPermissions("ApsPlatePlan:ApsPlatePlanTemp:remove")
+ @RequiresPermissions("apsPlatePlanTemp:remove")
@Log(title = "閽i噾璁″垝涓存椂琛�", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable String[] ids)
--
Gitblit v1.9.3