From e7a970151c40925eefa1fe837ac06e93594fcf82 Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期二, 26 五月 2026 09:56:17 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev_pro_娌冲崡楣ゅ' into dev_pro_娌冲崡楣ゅ

---
 src/main/java/com/ruoyi/projectManagement/controller/InfoController.java |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/projectManagement/controller/InfoController.java b/src/main/java/com/ruoyi/projectManagement/controller/InfoController.java
index 56baf0f..ed44f79 100644
--- a/src/main/java/com/ruoyi/projectManagement/controller/InfoController.java
+++ b/src/main/java/com/ruoyi/projectManagement/controller/InfoController.java
@@ -1,5 +1,7 @@
 package com.ruoyi.projectManagement.controller;
 
+import com.ruoyi.framework.aspectj.lang.annotation.Log;
+import com.ruoyi.framework.aspectj.lang.enums.BusinessType;
 import com.ruoyi.framework.web.domain.AjaxResult;
 import com.ruoyi.projectManagement.dto.InfoStageDto;
 import com.ruoyi.projectManagement.dto.UpdateStateInfo;
@@ -31,6 +33,7 @@
 
     @PostMapping("/save")
     @Operation(summary = "淇濆瓨")
+    @Log(title = "椤圭洰淇℃伅-淇濆瓨", businessType = BusinessType.INSERT)
     public AjaxResult save(@RequestBody @Valid SaveInfoVo saveInfoVo) {
         infoService.save(saveInfoVo);
         return AjaxResult.success();
@@ -38,6 +41,7 @@
 
     @PostMapping("/updateStatus")
     @Operation(summary = "淇敼鐘舵��")
+    @Log(title = "椤圭洰淇℃伅-淇敼鐘舵��", businessType = BusinessType.UPDATE)
     public AjaxResult updateStatus(@RequestBody @Valid UpdateStateInfo updateStateInfo){
         infoService.updateStatus(updateStateInfo);
         return AjaxResult.success();
@@ -45,6 +49,7 @@
 
     @PostMapping("/delete/{id}")
     @Operation(summary = "鍒犻櫎")
+    @Log(title = "椤圭洰淇℃伅-鍒犻櫎", businessType = BusinessType.DELETE)
     public AjaxResult delete(@PathVariable Long id) {
         infoService.deleteInfo(id);
         return AjaxResult.success();
@@ -65,6 +70,7 @@
 
     @PostMapping("/saveStage")
     @Operation(summary = "淇濆瓨闃舵")
+    @Log(title = "椤圭洰淇℃伅-淇濆瓨闃舵", businessType = BusinessType.INSERT)
     public AjaxResult saveStage(@RequestBody @Valid SaveInfoStageVo dto) {
         infoStageHandleService.save(dto);
         return AjaxResult.success();
@@ -78,6 +84,7 @@
 
     @PostMapping("/deleteStage/{id}")
     @Operation(summary = "鍒犻櫎闃舵")
+    @Log(title = "椤圭洰淇℃伅-鍒犻櫎闃舵", businessType = BusinessType.DELETE)
     public AjaxResult deleteStage(@PathVariable Long id) {
         infoStageHandleService.deleteById(id);
         return AjaxResult.success();

--
Gitblit v1.9.3