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