| | |
| | | |
| | | import cn.idev.excel.annotation.ExcelIgnoreUnannotated; |
| | | import cn.idev.excel.annotation.ExcelProperty; |
| | | import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat; |
| | | import cn.iocoder.yudao.framework.excel.core.convert.DictConvert; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | |
| | | @ExcelProperty("仓库名称") |
| | | private String name; |
| | | |
| | | @Schema(description = "仓库类型", example = "1") |
| | | @ExcelProperty(value = "仓库类型", converter = DictConvert.class) |
| | | @DictFormat(cn.iocoder.yudao.module.mes.enums.DictTypeConstants.MES_WM_WAREHOUSE_TYPE) |
| | | private Integer type; |
| | | |
| | | @Schema(description = "仓库地址", example = "A 区一号楼") |
| | | @ExcelProperty("仓库地址") |
| | | private String address; |