瀏覽代碼

修复和创哥表不一致问题

王苗苗 17 小時之前
父節點
當前提交
febac01968

+ 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));
     }