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