| | |
| | | |
| | | 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 = "库区编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | private Long locationId; |
| | | |