| | |
| | | */ |
| | | @ApiModelProperty(value = "备注") |
| | | private String memo; |
| | | @TableField(exist = false) |
| | | private String containerType$; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | |
| | | // ); |
| | | |
| | | public String getContainerType$(){ |
| | | if (Cools.isEmpty(this.containerType)){ |
| | | return ""; |
| | | } |
| | | DictDataService service = SpringUtils.getBean(DictDataService.class); |
| | | DictData dictData = service.getOne(new LambdaQueryWrapper<DictData>() |
| | | .eq(DictData::getDictTypeCode, "sys_container_type") |
| | | .eq(DictData::getValue, this.containerType)); |
| | | if (!Cools.isEmpty(dictData)) { |
| | | return String.valueOf(dictData.getLabel()); |
| | | } |
| | | return ""; |
| | | return this.containerType$; |
| | | } |
| | | |
| | | public String getCreateTime$() { |