wms-serve-mule/src/main/java/com/wms/entity/table/PartInfo.java

213 lines
4.8 KiB
Java
Raw Normal View History

2024-07-04 07:43:04 +08:00
package com.wms.entity.table;
import com.wms.utils.excel.ExcelExport;
import com.wms.utils.excel.ExcelImport;
/**
* 零件数据
*/
public class PartInfo {
@ExcelImport("Material")
@ExcelExport("零件号")
private String material;
@ExcelImport("Desc")
@ExcelExport("描述")
private String itemDesc;
@ExcelImport("Category")
@ExcelExport("零件类型")
private String category;
@ExcelImport("CategoryRemark")
@ExcelExport("策略")
private String categoryRemark;
@ExcelImport("Unload Place")
@ExcelExport("卸货点")
private String unloadPlace;
@ExcelImport("Kitting Point")
@ExcelExport("配料点")
private String kittingPoint;
@ExcelImport("Property")
@ExcelExport("可用性")
private String property;
@ExcelImport("Vendor ID")
@ExcelExport("供应商代码")
private String vendorId;
@ExcelImport("Data Owner")
@ExcelExport("数据负责人")
private String dataOwner;
@ExcelImport("Part Weight")
@ExcelExport("重量")
private Double partWeight;
@ExcelImport("Storage Location")
@ExcelExport("库位")
private String storageLocation;
@ExcelImport("Storage Type")
@ExcelExport("存储类型")
private String storageType;
@ExcelImport("Storage Bin")
@ExcelExport("BIN位")
private String storageBin;
@ExcelImport("Vendor Name")
@ExcelExport("供应商名称(英文)")
private String vendorNameEN;
@ExcelImport("供应商")
@ExcelExport("供应商名称(中文)")
private String vendorNameCN;
@ExcelImport("Vendor Country")
@ExcelExport("供应商国家/地区")
private String vendorCountry;
@ExcelImport("SLED")
@ExcelExport("SLED")
private String SLED;
@ExcelImport("UpdateDate")
@ExcelExport("更新时间")
private String updateDate;
public String getMaterial() {
return material;
}
public void setMaterial(String material) {
this.material = material;
}
public String getItemDesc() {
return itemDesc;
}
public void setItemDesc(String itemDesc) {
this.itemDesc = itemDesc;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public String getCategoryRemark() {
return categoryRemark;
}
public void setCategoryRemark(String categoryRemark) {
this.categoryRemark = categoryRemark;
}
public String getUnloadPlace() {
return unloadPlace;
}
public void setUnloadPlace(String unloadPlace) {
this.unloadPlace = unloadPlace;
}
public String getKittingPoint() {
return kittingPoint;
}
public void setKittingPoint(String kittingPoint) {
this.kittingPoint = kittingPoint;
}
public String getProperty() {
return property;
}
public void setProperty(String property) {
this.property = property;
}
public String getVendorId() {
return vendorId;
}
public void setVendorId(String vendorId) {
this.vendorId = vendorId;
}
public String getDataOwner() {
return dataOwner;
}
public void setDataOwner(String dataOwner) {
this.dataOwner = dataOwner;
}
public Double getPartWeight() {
return partWeight;
}
public void setPartWeight(Double partWeight) {
this.partWeight = partWeight;
}
public String getStorageLocation() {
return storageLocation;
}
public void setStorageLocation(String storageLocation) {
this.storageLocation = storageLocation;
}
public String getStorageType() {
return storageType;
}
public void setStorageType(String storageType) {
this.storageType = storageType;
}
public String getStorageBin() {
return storageBin;
}
public void setStorageBin(String storageBin) {
this.storageBin = storageBin;
}
public String getVendorNameEN() {
return vendorNameEN;
}
public void setVendorNameEN(String vendorNameEN) {
this.vendorNameEN = vendorNameEN;
}
public String getVendorCountry() {
return vendorCountry;
}
public void setVendorCountry(String vendorCountry) {
this.vendorCountry = vendorCountry;
}
public String getUpdateDate() {
return updateDate;
}
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
public String getSLED() {
return SLED;
}
public void setSLED(String SLED) {
this.SLED = SLED;
}
public String getVendorNameCN() {
return vendorNameCN;
}
public void setVendorNameCN(String vendorNameCN) {
this.vendorNameCN = vendorNameCN;
}
}