| | |
| | | @ApiModelProperty("质检状态") |
| | | private String isptStatus; |
| | | |
| | | @ApiModelProperty("质检结果") |
| | | private Short isptResult; |
| | | |
| | | /** |
| | | * 业务类型 |
| | | */ |
| | |
| | | // null // 备注 |
| | | // ); |
| | | |
| | | public String getwkType$() { |
| | | if (null == this.wkType) {return null;} |
| | | DictDataService dictDataService = SpringUtils.getBean(DictDataService.class); |
| | | DictData dictDatas = dictDataService.getOne(new LambdaQueryWrapper<DictData>() |
| | | .eq(DictData::getDictTypeCode, DictTypeCode.DICT_SYS_BUSINESS_TYPE) |
| | | .eq(DictData::getValue, this.wkType)); |
| | | if (Objects.isNull(dictDatas) || Objects.isNull(dictDatas.getLabel())) { |
| | | return null; |
| | | } |
| | | return dictDatas.getLabel(); |
| | | } |
| | | |
| | | public String getIsptStatus$() { |
| | | if (null == this.isptStatus) {return null;} |