单据按di排序
parent
7de61eb509
commit
4d307a42a3
@ -0,0 +1,81 @@
|
||||
package com.glxp.api.res.inout;
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class IoOrderDetailVo {
|
||||
|
||||
@ExcelProperty(value = "出入库单号", index = 1)
|
||||
private String orderIdFk;
|
||||
|
||||
/**
|
||||
* DI
|
||||
*/
|
||||
@ExcelProperty(value = "DI/物资编码", index = 2)
|
||||
private String nameCode;
|
||||
|
||||
/**
|
||||
* 批次号
|
||||
*/
|
||||
@ExcelProperty(value = "批次号", index = 5)
|
||||
private String batchNo;
|
||||
|
||||
/**
|
||||
* 生产日期
|
||||
*/
|
||||
@ExcelProperty(value = "生产日期", index = 10)
|
||||
private String productDate;
|
||||
|
||||
/**
|
||||
* 失效日期
|
||||
*/
|
||||
@ExcelProperty(value = "失效日期", index = 11)
|
||||
private String expireDate;
|
||||
|
||||
/**
|
||||
* 产品通用名称
|
||||
*/
|
||||
@ExcelProperty(value = "物资名称", index = 3)
|
||||
private String coName;
|
||||
|
||||
/**
|
||||
* 注册证号
|
||||
*/
|
||||
@ExcelProperty(value = "注册/备案号", index = 14)
|
||||
private String certCode;
|
||||
|
||||
/**
|
||||
* 生产企业
|
||||
*/
|
||||
@ExcelProperty(value = "生产企业", index = 13)
|
||||
private String manufacturer;
|
||||
|
||||
/**
|
||||
* 计量单位
|
||||
*/
|
||||
@ExcelProperty(value = "计量单位", index = 8)
|
||||
private String measname;
|
||||
|
||||
/**
|
||||
* 规格型号
|
||||
*/
|
||||
@ExcelProperty(value = "规格型号", index = 4)
|
||||
private String spec;
|
||||
|
||||
@ExcelProperty(value = "入库数量", index = 6)
|
||||
private Integer inCount;
|
||||
@ExcelProperty(value = "出库数量", index = 7)
|
||||
private Integer outCount;
|
||||
|
||||
@ExcelProperty(value = "单据类型", index = 9)
|
||||
private String billTypeName;
|
||||
@ExcelProperty(value = "出入库时间", index = 12)
|
||||
private Date auditTime;
|
||||
@ExcelProperty(value = "往来单位", index = 0)
|
||||
private String fromName;
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue