pbom-异常检查可多选

This commit is contained in:
大米 2024-09-29 18:32:38 +08:00
parent 7064fb2d5e
commit 309948adbd
2 changed files with 2 additions and 2 deletions

View File

@ -448,7 +448,7 @@ public class PBomApi extends BaseApi {
VUtils.isTure(CollUtil.isNotEmpty(noBomParams)).throwMessage(StrUtil.join(",", noBomParams)+ "PBom版本不存在,请检查参数是否正确."); VUtils.isTure(CollUtil.isNotEmpty(noBomParams)).throwMessage(StrUtil.join(",", noBomParams)+ "PBom版本不存在,请检查参数是否正确.");
for(Long rowId : checkExceptionDTO.getBomRowIds()) { for(Long rowId : checkExceptionDTO.getBomRowIds()) {
bomNewPbomParentService.checkException(rowId, checkExceptionDTO.getPBomType()); bomNewPbomParentService.checkException(rowId, checkExceptionDTO.getBomType());
}; };
return ResultVO.success(true); return ResultVO.success(true);
} }

View File

@ -14,5 +14,5 @@ public class PBomCheckExceptionDTO {
@ApiModelProperty("pbom类型 0- pBom工作表 1-pBOM正式表") @ApiModelProperty("pbom类型 0- pBom工作表 1-pBOM正式表")
private Integer pBomType; private Integer bomType;
} }