You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
294 lines
6.3 KiB
294 lines
6.3 KiB
package com.spring.ifs.data;
|
|
|
|
/**
|
|
* @description: 库存件
|
|
* @author LR
|
|
* @date 2024/12/11 9:53
|
|
* @version 1.0
|
|
*/
|
|
public class InventoryPart extends PartCatalog {
|
|
private String typeCode;// 大分类
|
|
private String plannerBuyer;// 计划购买人员
|
|
private String unitMeas;// 单位
|
|
private String primeCommodity;//
|
|
private String secondCommodity;//
|
|
private String assetClass;//
|
|
private String partStatus;// 状态
|
|
private String abcClass;// 状态
|
|
private String hazardCode;//
|
|
private String accountingGroup;// 商品属性编码
|
|
private String partProductCode;// 产品代码
|
|
private String partProductFamily;// 分类
|
|
private String typeDesignation;// 类型标识
|
|
private String dimQuality;// 功能
|
|
private String noteText;// 备注
|
|
private String leadTimeCode;//
|
|
private String manufLeadtime;//
|
|
private String expectedLeadtime;//
|
|
private String countryOfOrigin;// 国家
|
|
private String regionOfOrigin;// 产地区域
|
|
private String customsStatNo;//
|
|
private String intrastatConvFactor;//
|
|
private String durabilityDay;//
|
|
private String inventoryValuationMethod;//
|
|
private String inventoryPartCostLevel;//
|
|
private String invoiceConsideration;//
|
|
private String zeroCostFlag;//
|
|
private String partCostGroupId;//
|
|
private String engAttribute;// 库存件的属性模版
|
|
private String engChgLevel;//
|
|
private String bomType;
|
|
|
|
public InventoryPart() {
|
|
super();
|
|
}
|
|
|
|
public String getTypeCode() {
|
|
return typeCode;
|
|
}
|
|
|
|
public void setTypeCode(String typeCode) {
|
|
this.typeCode = typeCode;
|
|
}
|
|
|
|
public String getPlannerBuyer() {
|
|
return plannerBuyer;
|
|
}
|
|
|
|
public void setPlannerBuyer(String plannerBuyer) {
|
|
this.plannerBuyer = plannerBuyer;
|
|
}
|
|
|
|
public String getUnitMeas() {
|
|
return unitMeas;
|
|
}
|
|
|
|
public void setUnitMeas(String unitMeas) {
|
|
this.unitMeas = unitMeas;
|
|
}
|
|
|
|
public String getPrimeCommodity() {
|
|
return primeCommodity;
|
|
}
|
|
|
|
public void setPrimeCommodity(String primeCommodity) {
|
|
this.primeCommodity = primeCommodity;
|
|
}
|
|
|
|
public String getSecondCommodity() {
|
|
return secondCommodity;
|
|
}
|
|
|
|
public void setSecondCommodity(String secondCommodity) {
|
|
this.secondCommodity = secondCommodity;
|
|
}
|
|
|
|
public String getAssetClass() {
|
|
return assetClass;
|
|
}
|
|
|
|
public void setAssetClass(String assetClass) {
|
|
this.assetClass = assetClass;
|
|
}
|
|
|
|
public String getPartStatus() {
|
|
return partStatus;
|
|
}
|
|
|
|
public void setPartStatus(String partStatus) {
|
|
this.partStatus = partStatus;
|
|
}
|
|
|
|
public String getAbcClass() {
|
|
return abcClass;
|
|
}
|
|
|
|
public void setAbcClass(String abcClass) {
|
|
this.abcClass = abcClass;
|
|
}
|
|
|
|
public String getHazardCode() {
|
|
return hazardCode;
|
|
}
|
|
|
|
public void setHazardCode(String hazardCode) {
|
|
this.hazardCode = hazardCode;
|
|
}
|
|
|
|
public String getAccountingGroup() {
|
|
return accountingGroup;
|
|
}
|
|
|
|
public void setAccountingGroup(String accountingGroup) {
|
|
this.accountingGroup = accountingGroup;
|
|
}
|
|
|
|
public String getPartProductCode() {
|
|
return partProductCode;
|
|
}
|
|
|
|
public void setPartProductCode(String partProductCode) {
|
|
this.partProductCode = partProductCode;
|
|
}
|
|
|
|
public String getPartProductFamily() {
|
|
return partProductFamily;
|
|
}
|
|
|
|
public void setPartProductFamily(String partProductFamily) {
|
|
this.partProductFamily = partProductFamily;
|
|
}
|
|
|
|
public String getTypeDesignation() {
|
|
return typeDesignation;
|
|
}
|
|
|
|
public void setTypeDesignation(String typeDesignation) {
|
|
this.typeDesignation = typeDesignation;
|
|
}
|
|
|
|
public String getDimQuality() {
|
|
return dimQuality;
|
|
}
|
|
|
|
public void setDimQuality(String dimQuality) {
|
|
this.dimQuality = dimQuality;
|
|
}
|
|
|
|
public String getNoteText() {
|
|
return noteText;
|
|
}
|
|
|
|
public void setNoteText(String noteText) {
|
|
this.noteText = noteText;
|
|
}
|
|
|
|
public String getLeadTimeCode() {
|
|
return leadTimeCode;
|
|
}
|
|
|
|
public void setLeadTimeCode(String leadTimeCode) {
|
|
this.leadTimeCode = leadTimeCode;
|
|
}
|
|
|
|
public String getManufLeadtime() {
|
|
return manufLeadtime;
|
|
}
|
|
|
|
public void setManufLeadtime(String manufLeadtime) {
|
|
this.manufLeadtime = manufLeadtime;
|
|
}
|
|
|
|
public String getExpectedLeadtime() {
|
|
return expectedLeadtime;
|
|
}
|
|
|
|
public void setExpectedLeadtime(String expectedLeadtime) {
|
|
this.expectedLeadtime = expectedLeadtime;
|
|
}
|
|
|
|
public String getCountryOfOrigin() {
|
|
return countryOfOrigin;
|
|
}
|
|
|
|
public void setCountryOfOrigin(String countryOfOrigin) {
|
|
this.countryOfOrigin = countryOfOrigin;
|
|
}
|
|
|
|
public String getRegionOfOrigin() {
|
|
return regionOfOrigin;
|
|
}
|
|
|
|
public void setRegionOfOrigin(String regionOfOrigin) {
|
|
this.regionOfOrigin = regionOfOrigin;
|
|
}
|
|
|
|
public String getCustomsStatNo() {
|
|
return customsStatNo;
|
|
}
|
|
|
|
public void setCustomsStatNo(String customsStatNo) {
|
|
this.customsStatNo = customsStatNo;
|
|
}
|
|
|
|
public String getIntrastatConvFactor() {
|
|
return intrastatConvFactor;
|
|
}
|
|
|
|
public void setIntrastatConvFactor(String intrastatConvFactor) {
|
|
this.intrastatConvFactor = intrastatConvFactor;
|
|
}
|
|
|
|
public String getDurabilityDay() {
|
|
return durabilityDay;
|
|
}
|
|
|
|
public void setDurabilityDay(String durabilityDay) {
|
|
this.durabilityDay = durabilityDay;
|
|
}
|
|
|
|
public String getInventoryValuationMethod() {
|
|
return inventoryValuationMethod;
|
|
}
|
|
|
|
public void setInventoryValuationMethod(String inventoryValuationMethod) {
|
|
this.inventoryValuationMethod = inventoryValuationMethod;
|
|
}
|
|
|
|
public String getInventoryPartCostLevel() {
|
|
return inventoryPartCostLevel;
|
|
}
|
|
|
|
public void setInventoryPartCostLevel(String inventoryPartCostLevel) {
|
|
this.inventoryPartCostLevel = inventoryPartCostLevel;
|
|
}
|
|
|
|
public String getInvoiceConsideration() {
|
|
return invoiceConsideration;
|
|
}
|
|
|
|
public void setInvoiceConsideration(String invoiceConsideration) {
|
|
this.invoiceConsideration = invoiceConsideration;
|
|
}
|
|
|
|
public String getZeroCostFlag() {
|
|
return zeroCostFlag;
|
|
}
|
|
|
|
public void setZeroCostFlag(String zeroCostFlag) {
|
|
this.zeroCostFlag = zeroCostFlag;
|
|
}
|
|
|
|
public String getPartCostGroupId() {
|
|
return partCostGroupId;
|
|
}
|
|
|
|
public void setPartCostGroupId(String partCostGroupId) {
|
|
this.partCostGroupId = partCostGroupId;
|
|
}
|
|
|
|
public String getEngAttribute() {
|
|
return engAttribute;
|
|
}
|
|
|
|
public void setEngAttribute(String engAttribute) {
|
|
this.engAttribute = engAttribute;
|
|
}
|
|
|
|
public String getEngChgLevel() {
|
|
return engChgLevel;
|
|
}
|
|
|
|
public void setEngChgLevel(String engChgLevel) {
|
|
this.engChgLevel = engChgLevel;
|
|
}
|
|
|
|
public String getBomType() {
|
|
return bomType;
|
|
}
|
|
|
|
public void setBomType(String bomType) {
|
|
this.bomType = bomType;
|
|
}
|
|
|
|
}
|