소스 검색

修复和创哥表不一致问题

王苗苗 17 시간 전
부모
커밋
febac01968
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      slibra-admin/src/main/java/com/slibra/web/controller/business/ValidateCoefController.java

+ 0 - 2
slibra-admin/src/main/java/com/slibra/web/controller/business/ValidateCoefController.java

@@ -77,7 +77,6 @@ public class ValidateCoefController extends BaseController
     @PostMapping
     public AjaxResult add(@RequestBody ValidateCoef validateCoef)
     {
-        validateCoef.setCreateBy(getUsername());
         return toAjax(validateCoefService.insertValidateCoef(validateCoef));
     }
 
@@ -89,7 +88,6 @@ public class ValidateCoefController extends BaseController
     @PutMapping
     public AjaxResult edit(@RequestBody ValidateCoef validateCoef)
     {
-        validateCoef.setUpdateBy(getUsername());
         return toAjax(validateCoefService.updateValidateCoef(validateCoef));
     }