package com.zy.common.utils.excel.locNomal;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Data
|
@ExcelIgnoreUnannotated
|
public class LocNormalExcel {
|
@ExcelProperty(index = 0)
|
private String matnr;
|
@ExcelProperty(index = 1)
|
private String maktx;
|
@ExcelProperty(index = 2)
|
private String lgnum;
|
@ExcelProperty(index = 3)
|
private String type;
|
@ExcelProperty(index = 4)
|
private String mnemonic;
|
@ExcelProperty(index = 5)
|
private String supplier;
|
@ExcelProperty(index = 6)
|
private String warehouse;
|
@ExcelProperty(index = 7)
|
private String brand;
|
@ExcelProperty(index = 8)
|
private BigDecimal anfme;
|
@ExcelProperty(index = 9)
|
private String altme;
|
@ExcelProperty(index = 10)
|
private String bname;
|
@ExcelProperty(index = 11)
|
private String memo;
|
|
private Long appeUser;
|
|
private Date appeTime;
|
@ExcelProperty(index = 12)
|
private String state;
|
|
public LocNormalExcel() {
|
|
}
|
|
public LocNormalExcel(String matnr, String maktx, String lgnum, String type, String mnemonic, String supplier, String warehouse, String brand, BigDecimal anfme, String altme, String bname, String memo, Long appeUser, Date appeTime,String state) {
|
this.matnr = matnr;
|
this.maktx = maktx;
|
this.lgnum = lgnum;
|
this.type = type;
|
this.mnemonic = mnemonic;
|
this.supplier = supplier;
|
this.warehouse = warehouse;
|
this.brand = brand;
|
this.anfme = anfme;
|
this.altme = altme;
|
this.bname = bname;
|
this.memo = memo;
|
this.appeUser = appeUser;
|
this.appeTime = appeTime;
|
this.state = state;
|
}
|
|
public String getMatnr() {
|
return matnr;
|
}
|
|
public void setMatnr(String matnr) {
|
this.matnr = matnr;
|
}
|
|
public String getMaktx() {
|
return maktx;
|
}
|
|
public void setMaktx(String maktx) {
|
this.maktx = maktx;
|
}
|
|
public String getLgnum() {
|
return lgnum;
|
}
|
|
public void setLgnum(String lgnum) {
|
this.lgnum = lgnum;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getMnemonic() {
|
return mnemonic;
|
}
|
|
public void setMnemonic(String mnemonic) {
|
this.mnemonic = mnemonic;
|
}
|
|
public String getSupplier() {
|
return supplier;
|
}
|
|
public void setSupplier(String supplier) {
|
this.supplier = supplier;
|
}
|
|
public String getWarehouse() {
|
return warehouse;
|
}
|
|
public void setWarehouse(String warehouse) {
|
this.warehouse = warehouse;
|
}
|
|
public String getBrand() {
|
return brand;
|
}
|
|
public void setBrand(String brand) {
|
this.brand = brand;
|
}
|
|
public BigDecimal getAnfme() {
|
return anfme;
|
}
|
|
public void setAnfme(BigDecimal anfme) {
|
this.anfme = anfme;
|
}
|
|
public String getAltme() {
|
return altme;
|
}
|
|
public void setAltme(String altme) {
|
this.altme = altme;
|
}
|
|
public String getBname() {
|
return bname;
|
}
|
|
public void setBname(String bname) {
|
this.bname = bname;
|
}
|
|
public String getMemo() {
|
return memo;
|
}
|
|
public void setMemo(String memo) {
|
this.memo = memo;
|
}
|
|
public Long getAppeUser() {
|
return appeUser;
|
}
|
|
public void setAppeUser(Long appeUser) {
|
this.appeUser = appeUser;
|
}
|
|
public Date getAppeTime() {
|
return appeTime;
|
}
|
|
public void setAppeTime(Date appeTime) {
|
this.appeTime = appeTime;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
}
|