| | |
| | | */ |
| | | @ApiModelProperty(value = "备注") |
| | | private String memo; |
| | | @TableField(exist = false) |
| | | private String exceStatus$; |
| | | |
| | | |
| | | |
| | | public CheckDiff() { |
| | | } |
| | |
| | | } |
| | | |
| | | public String getExceStatus$() { |
| | | if (Cools.isEmpty(this.exceStatus)) { |
| | | return ""; |
| | | } |
| | | DictDataService dictDataService = SpringUtils.getBean(DictDataService.class); |
| | | DictData dictData = dictDataService.getOne(new LambdaQueryWrapper<DictData>() |
| | | .eq(DictData::getDictTypeCode, DictTypeCode.SYS_CHECK_DIFF_EXCE_STATUS) |
| | | .eq(DictData::getValue, this.exceStatus)); |
| | | if (Objects.isNull(dictData)) { |
| | | return null; |
| | | } |
| | | return dictData.getLabel(); |
| | | return this.exceStatus$; |
| | | } |
| | | |
| | | public String getStatus$() { |