From f0a9a41697a8568e8b3bd3436c450e68b3298916 Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期四, 27 二月 2025 11:39:18 +0800
Subject: [PATCH] 修改日志

---
 springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/api/SystemUserController.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/api/SystemUserController.java b/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/api/SystemUserController.java
index 60e90bf..2517a82 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/api/SystemUserController.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/api/SystemUserController.java
@@ -197,7 +197,7 @@
 	
 	@PutMapping("/freeze/{id}")
 	@ApiOperation(value = "冻结账号", tags = {"三个身边后台-人员管理"})
-	@OperLog(operModul = "三个身边后台",operType = 0,businessType = "冻结账号")
+	@OperLog(operModul = "三个身边后台",operType = 2,businessType = "冻结账号")
 	public R freeze(@PathVariable("id") Integer id){
 		SystemUser systemUser = systemUserService.getById(id);
 		if(2 == systemUser.getStatus()){
@@ -211,7 +211,7 @@
 	
 	@PutMapping("/unfreeze/{id}")
 	@ApiOperation(value = "解冻账号", tags = {"三个身边后台-人员管理"})
-	@OperLog(operModul = "三个身边后台",operType = 0,businessType = "解冻账号")
+	@OperLog(operModul = "三个身边后台",operType = 2,businessType = "解冻账号")
 	public R unfreeze(@PathVariable("id") Integer id){
 		SystemUser systemUser = systemUserService.getById(id);
 		if(1 == systemUser.getStatus()){

--
Gitblit v1.7.1