From 29167f6c5d895749f369fadbcd4b3c0a3a17052c Mon Sep 17 00:00:00 2001
From: manailin <261030956@qq.com>
Date: 星期三, 14 九月 2022 15:40:58 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/sanshuohuitang_dev' into sanshuohuitang_dev

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventApi.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventApi.java
index fdb8ed7..95c5daa 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoEventApi.java
@@ -54,7 +54,7 @@
      * */
     @PostMapping
     public R add(@RequestBody ComMediateTypeDTO comMediateTypeDTO){
-        comMediateTypeDTO.setCreateUser(this.getLoginUserInfo().getUserId());
+        //comMediateTypeDTO.setCreateUser(this.getLoginUserInfo().getUserId());
         return commediateTypeService.addOrUpdate(comMediateTypeDTO);
     }
 
@@ -63,7 +63,7 @@
      * */
     @PutMapping
     public R update(@RequestBody ComMediateTypeDTO comMediateTypeDTO){
-        comMediateTypeDTO.setModifyUser(this.getLoginUserInfo().getUserId());
+        //comMediateTypeDTO.setModifyUser(this.getLoginUserInfo().getUserId());
         return commediateTypeService.addOrUpdate(comMediateTypeDTO);
     }
 
@@ -75,7 +75,7 @@
         ComMediateType comMediateType = commediateTypeService.getById(id);
         comMediateType.setDeleteFlag(true);
         comMediateType.setEnabled(false);
-        comMediateType.setModifyUser(this.getLoginUserInfo().getUserId());
+        //comMediateType.setModifyUser(this.getLoginUserInfo().getUserId());
         return R.ok(commediateTypeService.updateById(comMediateType));
     }
 }

--
Gitblit v1.7.1