Przeglądaj źródła

修复和创哥表不一致问题

王苗苗 15 godzin temu
rodzic
commit
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));
     }