| | |
| | | @ApiModelProperty(value= "主单ID") |
| | | private Long ispectId; |
| | | |
| | | @ApiModelProperty("质检单状态") |
| | | private String isptStatus; |
| | | |
| | | @ApiModelProperty("单据明细ID") |
| | | private Long asnItemId; |
| | | |
| | |
| | | // null // 备注 |
| | | // ); |
| | | |
| | | public String getIsptStatus$() { |
| | | if (null == this.isptStatus) {return null; } |
| | | DictDataService dictDataService = SpringUtils.getBean(DictDataService.class); |
| | | DictData dictDatas = dictDataService.getOne(new LambdaQueryWrapper<DictData>() |
| | | .eq(DictData::getDictTypeCode, DictTypeCode.DICT_QLY_INSPECT_STATUS) |
| | | .eq(DictData::getValue, this.isptStatus)); |
| | | if (Objects.isNull(dictDatas) || Objects.isNull(dictDatas.getLabel())) { |
| | | return null; |
| | | } |
| | | return dictDatas.getLabel(); |
| | | } |
| | | |
| | | public String getIsptResult$() { |
| | | if (null == this.isptResult) {return null; } |
| | | DictDataService dictDataService = SpringUtils.getBean(DictDataService.class); |