显示提示

This commit is contained in:
liang.chao 2024-12-27 16:49:34 +08:00
parent f72c6fc29d
commit 3e8befc805
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ public class MaDevQcController extends BaseController {
@PostMapping("/deleteById")
public AjaxResult deleteById(@RequestBody MaDevQc maDevQc) {
if (maDevQc == null || maDevQc.getFileId() == null || maDevQc.getMaId() == null) {
return AjaxResult.error(HttpCodeEnum.TO_PARAM_NULL.getCode(), HttpCodeEnum.TO_PARAM_NULL.getMsg());
return AjaxResult.error(HttpCodeEnum.TO_PARAM_NULL.getMsg());
}
Integer count = maDevQcService.selectDevQcListByMaId(maDevQc.getMaId());
if (count <= 1) {