fix:查询子项

pg_adapter
wangxy 6 months ago
parent 7c09284ee1
commit 6a36a3e803

@ -64,9 +64,6 @@ public class CheckReportManager {
.eq(TdCheckType::getCheckId, checkReportDTO.getCheckId())
.remove();
} else {
if(Objects.isNull(tdCheckReport.getCheckState())){
tdCheckReport.setCheckState("3");
}
tdCheckReport.setDepart(ShiroUtils.getSysUser().getDept().getDeptName());
tdCheckReport.setAdduser(ShiroUtils.getSysUser().getUserName());
tdCheckReport.setCreateTime(new Date());

@ -195,7 +195,6 @@ public class CheckReportController extends BaseController {
@PostMapping("/selfCheckSave")
@ResponseBody
public AjaxResult selfCheckSave(@RequestBody TdCheckReportDTO checkReportDTO) {
checkReportDTO.setCheckState("2");
return toAjax(checkReportManager.saveOrUpdate(checkReportDTO));
}

Loading…
Cancel
Save