lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/EamTechnicalStatusEvaluationStandardController.java
@@ -158,7 +158,7 @@ entity.setStandardStatus(TechnicalStatusEvaluationStandardEnum.ENABLE.name()); eamTechnicalStatusEvaluationStandardService.updateById(entity); } return Result.OK("删除成功!"); return Result.OK("提交成功!"); } /** lxzn-module-eam/src/main/java/org/jeecg/modules/eam/request/EamTechnicalStatusEvaluationStandardRequest.java
@@ -39,6 +39,9 @@ /**是否有其他检查;是否*/ @ApiModelProperty(value = "是否有其他检查;是否") private String hasOtherCheck; /**备注*/ @ApiModelProperty(value = "备注") private String remark; /**列表 检查项明细*/ @ApiModelProperty(value = "列表 检查项明细") private List<EamTechnicalStatusEvaluationStandardDetail> tableDetailList; lxzn-module-eam/src/main/java/org/jeecg/modules/eam/service/impl/EamTechnicalStatusEvaluationStandardServiceImpl.java
@@ -188,6 +188,7 @@ entity.setHasOtherCheck(request.getHasOtherCheck()); entity.setHasPrecisionCheck(request.getHasPrecisionCheck()); entity.setHasSafetyEquipmentCheck(request.getHasSafetyEquipmentCheck()); entity.setRemark(request.getRemark()); this.getBaseMapper().updateById(entity); //处理详情 if(CollectionUtil.isNotEmpty(request.getTableDetailList())) { @@ -252,6 +253,7 @@ newEntity.setHasSafetyEquipmentCheck(request.getHasSafetyEquipmentCheck()); //删除标记 newEntity.setDelFlag(CommonConstant.DEL_FLAG_0); newEntity.setRemark(request.getRemark()); //重复性校验 EamTechnicalStatusEvaluationStandard exist = checkDuplicate(newEntity.getEquipmentId(), entity.getId()); if(exist != null){