编写库存调整AP0AD实体类
This commit is contained in:
parent
78494b7370
commit
9ec7cf67d9
@ -0,0 +1,105 @@
|
||||
package com.ktg.mes.stl.domain;
|
||||
|
||||
import com.ktg.common.annotation.Excel;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 小型刀具库-库存调整
|
||||
*/
|
||||
@Data
|
||||
public class InventoryAdjustment {
|
||||
@Excel(name = "单别")
|
||||
private String singetsu;
|
||||
|
||||
@Excel(name = "单号")
|
||||
private String oddNumber;
|
||||
|
||||
@Excel(name = "单据日期")
|
||||
private Date billDate;
|
||||
|
||||
@Excel(name = "序号")
|
||||
private String serialNumber;
|
||||
|
||||
@Excel(name = "品号")
|
||||
private String productNumber;
|
||||
|
||||
@Excel(name = "品名")
|
||||
private String productName;
|
||||
|
||||
@Excel(name = "规格")
|
||||
private String specification;
|
||||
|
||||
@Excel(name = "数量")
|
||||
private Double quantity;
|
||||
|
||||
@Excel(name = "单价")
|
||||
private Double unitPrice;
|
||||
|
||||
@Excel(name = "金额")
|
||||
private Double money;
|
||||
|
||||
@Excel(name = "调出仓库")
|
||||
private String outWarehouse;
|
||||
|
||||
@Excel(name = "调入仓库")
|
||||
private String inWarehouse;
|
||||
|
||||
@Excel(name = "审核码")
|
||||
private String approvalCode;
|
||||
|
||||
@Excel(name = "品牌")
|
||||
private String brand;
|
||||
|
||||
@Excel(name = "厂家品号")
|
||||
private String manufacturersProductNumber;
|
||||
|
||||
@Excel(name = "备注一")
|
||||
private String remark1;
|
||||
|
||||
@Excel(name = "备注二")
|
||||
private String remark2;
|
||||
|
||||
@Excel(name = "自定义字段1")
|
||||
private String customField1;
|
||||
|
||||
@Excel(name = "自定义字段2")
|
||||
private String customField2;
|
||||
|
||||
@Excel(name = "自定义字段3")
|
||||
private String customField3;
|
||||
|
||||
@Excel(name = "自定义字段4")
|
||||
private String customField4;
|
||||
|
||||
@Excel(name = "自定义字段5")
|
||||
private String customField5;
|
||||
|
||||
@Excel(name = "自定义字段6")
|
||||
private Double customField6;
|
||||
|
||||
@Excel(name = "自定义字段7")
|
||||
private Double customField7;
|
||||
|
||||
@Excel(name = "自定义字段8")
|
||||
private Double customField8;
|
||||
|
||||
@Excel(name = "自定义字段9")
|
||||
private Double customField9;
|
||||
|
||||
@Excel(name = "自定义字段10")
|
||||
private Double customField10;
|
||||
|
||||
@Excel(name = "录入人")
|
||||
private String dataEntryClerk;
|
||||
|
||||
@Excel(name = "审核人")
|
||||
private String auditor;
|
||||
|
||||
@Excel(name = "录入时间")
|
||||
private Date inTime;
|
||||
|
||||
@Excel(name = "审核时间")
|
||||
private Date auditTime;
|
||||
}
|
Loading…
Reference in New Issue
Block a user