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