|
|
|
@ -1,11 +1,14 @@ |
|
|
|
package com.spring.modules.part.entity.APIEntity; |
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
/** |
|
|
|
* BOM子物料 |
|
|
|
*/ |
|
|
|
@Data |
|
|
|
public class RecipeIfsItem { |
|
|
|
private String contract;// 域 |
|
|
|
private String partNo;// 物料编码 |
|
|
|
@ -28,8 +31,8 @@ public class RecipeIfsItem { |
|
|
|
private String issueToLoc; // 发料库位 |
|
|
|
private String operationNo; // 工序id |
|
|
|
private String consumptionItem; // 消耗项目 |
|
|
|
private BigDecimal partsByWeight; |
|
|
|
private BigDecimal qtyUom; |
|
|
|
private String partsByWeight; |
|
|
|
private String qtyUom; |
|
|
|
private String issuePlannedScrapDb; |
|
|
|
private String issueOverreportedQtyDb; |
|
|
|
private String fixedQtyFlag; |
|
|
|
@ -37,347 +40,15 @@ public class RecipeIfsItem { |
|
|
|
private String phantomConsume; |
|
|
|
private String operCostDistribution; |
|
|
|
private String genOhCostDistribution; |
|
|
|
private BigDecimal qtyKg; |
|
|
|
private String qtyKg; |
|
|
|
private String byProdAsSupplyInMrpDb; |
|
|
|
private String leadtimeOffset; |
|
|
|
private String stdPlannedItem; |
|
|
|
private String chargedItem; |
|
|
|
private Date lastActivityDate; |
|
|
|
private String lastActivityDate; |
|
|
|
private String excludeFromCalculationsDb; |
|
|
|
private String excludeFromAsBuiltDb; |
|
|
|
private String lotBatchOriginDb; |
|
|
|
private String weightShare; |
|
|
|
|
|
|
|
public String getWeightShare() { |
|
|
|
return weightShare; |
|
|
|
} |
|
|
|
|
|
|
|
public void setWeightShare(String weightShare) { |
|
|
|
this.weightShare = weightShare; |
|
|
|
} |
|
|
|
|
|
|
|
public BigDecimal getPartsByWeight() { |
|
|
|
return partsByWeight; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPartsByWeight(BigDecimal partsByWeight) { |
|
|
|
this.partsByWeight = partsByWeight; |
|
|
|
} |
|
|
|
|
|
|
|
public BigDecimal getQtyUom() { |
|
|
|
return qtyUom; |
|
|
|
} |
|
|
|
|
|
|
|
public void setQtyUom(BigDecimal qtyUom) { |
|
|
|
this.qtyUom = qtyUom; |
|
|
|
} |
|
|
|
|
|
|
|
public String getIssuePlannedScrapDb() { |
|
|
|
return issuePlannedScrapDb; |
|
|
|
} |
|
|
|
|
|
|
|
public void setIssuePlannedScrapDb(String issuePlannedScrapDb) { |
|
|
|
this.issuePlannedScrapDb = issuePlannedScrapDb; |
|
|
|
} |
|
|
|
|
|
|
|
public String getIssueOverreportedQtyDb() { |
|
|
|
return issueOverreportedQtyDb; |
|
|
|
} |
|
|
|
|
|
|
|
public void setIssueOverreportedQtyDb(String issueOverreportedQtyDb) { |
|
|
|
this.issueOverreportedQtyDb = issueOverreportedQtyDb; |
|
|
|
} |
|
|
|
|
|
|
|
public String getFixedQtyFlag() { |
|
|
|
return fixedQtyFlag; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFixedQtyFlag(String fixedQtyFlag) { |
|
|
|
this.fixedQtyFlag = fixedQtyFlag; |
|
|
|
} |
|
|
|
|
|
|
|
public String getPromisePlanned() { |
|
|
|
return promisePlanned; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPromisePlanned(String promisePlanned) { |
|
|
|
this.promisePlanned = promisePlanned; |
|
|
|
} |
|
|
|
|
|
|
|
public String getPhantomConsume() { |
|
|
|
return phantomConsume; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPhantomConsume(String phantomConsume) { |
|
|
|
this.phantomConsume = phantomConsume; |
|
|
|
} |
|
|
|
|
|
|
|
public String getOperCostDistribution() { |
|
|
|
return operCostDistribution; |
|
|
|
} |
|
|
|
|
|
|
|
public void setOperCostDistribution(String operCostDistribution) { |
|
|
|
this.operCostDistribution = operCostDistribution; |
|
|
|
} |
|
|
|
|
|
|
|
public String getGenOhCostDistribution() { |
|
|
|
return genOhCostDistribution; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGenOhCostDistribution(String genOhCostDistribution) { |
|
|
|
this.genOhCostDistribution = genOhCostDistribution; |
|
|
|
} |
|
|
|
|
|
|
|
public BigDecimal getQtyKg() { |
|
|
|
return qtyKg; |
|
|
|
} |
|
|
|
|
|
|
|
public void setQtyKg(BigDecimal qtyKg) { |
|
|
|
this.qtyKg = qtyKg; |
|
|
|
} |
|
|
|
|
|
|
|
public String getByProdAsSupplyInMrpDb() { |
|
|
|
return byProdAsSupplyInMrpDb; |
|
|
|
} |
|
|
|
|
|
|
|
public void setByProdAsSupplyInMrpDb(String byProdAsSupplyInMrpDb) { |
|
|
|
this.byProdAsSupplyInMrpDb = byProdAsSupplyInMrpDb; |
|
|
|
} |
|
|
|
|
|
|
|
public String getLeadtimeOffset() { |
|
|
|
return leadtimeOffset; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLeadtimeOffset(String leadtimeOffset) { |
|
|
|
this.leadtimeOffset = leadtimeOffset; |
|
|
|
} |
|
|
|
|
|
|
|
public String getStdPlannedItem() { |
|
|
|
return stdPlannedItem; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStdPlannedItem(String stdPlannedItem) { |
|
|
|
this.stdPlannedItem = stdPlannedItem; |
|
|
|
} |
|
|
|
|
|
|
|
public String getChargedItem() { |
|
|
|
return chargedItem; |
|
|
|
} |
|
|
|
|
|
|
|
public void setChargedItem(String chargedItem) { |
|
|
|
this.chargedItem = chargedItem; |
|
|
|
} |
|
|
|
|
|
|
|
public Date getLastActivityDate() { |
|
|
|
return lastActivityDate; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLastActivityDate(Date lastActivityDate) { |
|
|
|
this.lastActivityDate = lastActivityDate; |
|
|
|
} |
|
|
|
|
|
|
|
public String getExcludeFromCalculationsDb() { |
|
|
|
return excludeFromCalculationsDb; |
|
|
|
} |
|
|
|
|
|
|
|
public void setExcludeFromCalculationsDb(String excludeFromCalculationsDb) { |
|
|
|
this.excludeFromCalculationsDb = excludeFromCalculationsDb; |
|
|
|
} |
|
|
|
|
|
|
|
public String getExcludeFromAsBuiltDb() { |
|
|
|
return excludeFromAsBuiltDb; |
|
|
|
} |
|
|
|
|
|
|
|
public void setExcludeFromAsBuiltDb(String excludeFromAsBuiltDb) { |
|
|
|
this.excludeFromAsBuiltDb = excludeFromAsBuiltDb; |
|
|
|
} |
|
|
|
|
|
|
|
public String getLotBatchOriginDb() { |
|
|
|
return lotBatchOriginDb; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLotBatchOriginDb(String lotBatchOriginDb) { |
|
|
|
this.lotBatchOriginDb = lotBatchOriginDb; |
|
|
|
} |
|
|
|
|
|
|
|
public String getRomType() { |
|
|
|
return romType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setRomType(String romType) { |
|
|
|
this.romType = romType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getPrintUnit() { |
|
|
|
return printUnit; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPrintUnit(String printUnit) { |
|
|
|
this.printUnit = printUnit; |
|
|
|
} |
|
|
|
|
|
|
|
public String getIssueToLoc() { |
|
|
|
return issueToLoc; |
|
|
|
} |
|
|
|
|
|
|
|
public void setIssueToLoc(String issueToLoc) { |
|
|
|
this.issueToLoc = issueToLoc; |
|
|
|
} |
|
|
|
|
|
|
|
public String getOperationNo() { |
|
|
|
return operationNo; |
|
|
|
} |
|
|
|
|
|
|
|
public void setOperationNo(String operationNo) { |
|
|
|
this.operationNo = operationNo; |
|
|
|
} |
|
|
|
|
|
|
|
public String getConsumptionItem() { |
|
|
|
return consumptionItem; |
|
|
|
} |
|
|
|
|
|
|
|
public void setConsumptionItem(String consumptionItem) { |
|
|
|
this.consumptionItem = consumptionItem; |
|
|
|
} |
|
|
|
|
|
|
|
public RecipeIfsItem() { |
|
|
|
super(); |
|
|
|
// TODO Auto-generated constructor stub |
|
|
|
} |
|
|
|
|
|
|
|
public String getContract() { |
|
|
|
return contract; |
|
|
|
} |
|
|
|
|
|
|
|
public void setContract(String contract) { |
|
|
|
this.contract = contract; |
|
|
|
} |
|
|
|
|
|
|
|
public String getPartNo() { |
|
|
|
return partNo; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPartNo(String partNo) { |
|
|
|
this.partNo = partNo; |
|
|
|
} |
|
|
|
|
|
|
|
public String getEngChgLevel() { |
|
|
|
return engChgLevel; |
|
|
|
} |
|
|
|
|
|
|
|
public void setEngChgLevel(String engChgLevel) { |
|
|
|
this.engChgLevel = engChgLevel; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBomType() { |
|
|
|
return romType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBomType(String romType) { |
|
|
|
this.romType = romType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getAlternativeNo() { |
|
|
|
return alternativeNo; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAlternativeNo(String alternativeNo) { |
|
|
|
this.alternativeNo = alternativeNo; |
|
|
|
} |
|
|
|
|
|
|
|
public String getLineItemNo() { |
|
|
|
return lineItemNo; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLineItemNo(String lineItemNo) { |
|
|
|
this.lineItemNo = lineItemNo; |
|
|
|
} |
|
|
|
|
|
|
|
public String getLineSequence() { |
|
|
|
return lineSequence; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLineSequence(String lineSequence) { |
|
|
|
this.lineSequence = lineSequence; |
|
|
|
} |
|
|
|
|
|
|
|
public String getComponentPart() { |
|
|
|
return componentPart; |
|
|
|
} |
|
|
|
|
|
|
|
public void setComponentPart(String componentPart) { |
|
|
|
this.componentPart = componentPart; |
|
|
|
} |
|
|
|
|
|
|
|
public String getQtyPerAssembly() { |
|
|
|
return qtyPerAssembly; |
|
|
|
} |
|
|
|
|
|
|
|
public void setQtyPerAssembly(String qtyPerAssembly) { |
|
|
|
this.qtyPerAssembly = qtyPerAssembly; |
|
|
|
} |
|
|
|
|
|
|
|
public String getIssueType() { |
|
|
|
return issueType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setIssueType(String issueType) { |
|
|
|
this.issueType = issueType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getComponentScrap() { |
|
|
|
return componentScrap; |
|
|
|
} |
|
|
|
|
|
|
|
public void setComponentScrap(String componentScrap) { |
|
|
|
this.componentScrap = componentScrap; |
|
|
|
} |
|
|
|
|
|
|
|
public String getShrinkageFactor() { |
|
|
|
return shrinkageFactor; |
|
|
|
} |
|
|
|
|
|
|
|
public void setShrinkageFactor(String shrinkageFactor) { |
|
|
|
this.shrinkageFactor = shrinkageFactor; |
|
|
|
} |
|
|
|
|
|
|
|
public String getNoteText() { |
|
|
|
return noteText; |
|
|
|
} |
|
|
|
|
|
|
|
public void setNoteText(String noteText) { |
|
|
|
this.noteText = noteText; |
|
|
|
} |
|
|
|
|
|
|
|
public String getIfsRowKey() { |
|
|
|
return ifsRowKey; |
|
|
|
} |
|
|
|
|
|
|
|
public void setIfsRowKey(String ifsRowKey) { |
|
|
|
this.ifsRowKey = ifsRowKey; |
|
|
|
} |
|
|
|
|
|
|
|
public String getIfsRowId() { |
|
|
|
return ifsRowId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setIfsRowId(String ifsRowId) { |
|
|
|
this.ifsRowId = ifsRowId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getIfsRowVersion() { |
|
|
|
return ifsRowVersion; |
|
|
|
} |
|
|
|
|
|
|
|
public void setIfsRowVersion(String ifsRowVersion) { |
|
|
|
this.ifsRowVersion = ifsRowVersion; |
|
|
|
} |
|
|
|
|
|
|
|
public String getHistType() { |
|
|
|
return histType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setHistType(String histType) { |
|
|
|
this.histType = histType; |
|
|
|
} |
|
|
|
private String createDate; |
|
|
|
} |