gaojs
4 months ago
3 changed files with 98 additions and 0 deletions
@ -0,0 +1,48 @@ |
|||||
|
package com.win.module.wms.controller.containerRecord.vo; |
||||
|
|
||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||
|
import com.win.framework.excel.core.annotations.DictFormat; |
||||
|
import com.win.framework.excel.core.convert.DictConvert; |
||||
|
import com.win.module.wms.enums.DictTypeConstants; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.time.LocalDateTime; |
||||
|
|
||||
|
/** |
||||
|
* 器具管理记录主 Excel VO |
||||
|
* |
||||
|
* @author 超级管理员 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ContainerRecordMainInitExcelVO { |
||||
|
|
||||
|
@ExcelProperty("单据号") |
||||
|
private String number; |
||||
|
|
||||
|
@ExcelProperty("申请单号") |
||||
|
private String requestNumber; |
||||
|
|
||||
|
@ExcelProperty(value = "类型", converter = DictConvert.class) |
||||
|
@DictFormat(DictTypeConstants.CONTAINER_CONTENT_TYPE) |
||||
|
private String type; |
||||
|
|
||||
|
@ExcelProperty("器具号") |
||||
|
private String containerNumber; |
||||
|
|
||||
|
@ExcelProperty("目标库位代码") |
||||
|
private String toLocationCode; |
||||
|
|
||||
|
@ExcelProperty("到数量") |
||||
|
private BigDecimal toQty; |
||||
|
|
||||
|
@ExcelProperty(value = "计量单位", converter = DictConvert.class) |
||||
|
@DictFormat(DictTypeConstants.UOM) |
||||
|
private String uom; |
||||
|
|
||||
|
@ExcelProperty("创建者") |
||||
|
private String creator; |
||||
|
|
||||
|
@ExcelProperty("创建时间") |
||||
|
private LocalDateTime createTime; |
||||
|
} |
Loading…
Reference in new issue