|
|
@ -6,16 +6,19 @@ import java.util.List; |
|
|
* BOM替代表 |
|
|
* BOM替代表 |
|
|
*/ |
|
|
*/ |
|
|
public class RecipeIfsAlternative { |
|
|
public class RecipeIfsAlternative { |
|
|
private String contract;// 域 |
|
|
|
|
|
private String partNo;// 物料编码 |
|
|
|
|
|
private String engChgLevel;// 版本 |
|
|
|
|
|
private String bomType;// 分类 |
|
|
|
|
|
private String alternativeNo;// 替代编码 |
|
|
|
|
|
private String alternativeDesc;// 替代描述 |
|
|
|
|
|
private String noteText;// 备注 |
|
|
|
|
|
private String ifsRowKey;// ifs的唯一行号 |
|
|
|
|
|
private String ifsRowId;// ifs的对象id |
|
|
|
|
|
private String ifsRowVersion;// ifs的版本号 |
|
|
|
|
|
|
|
|
private String contract; // 域 |
|
|
|
|
|
private String partNo; // 物料编码 |
|
|
|
|
|
private String engChgLevel; // 版本 |
|
|
|
|
|
private String bomType; // 分类 |
|
|
|
|
|
private String alternativeNo; // 替代编码 |
|
|
|
|
|
private String alternativeDesc; // 替代描述 |
|
|
|
|
|
private String noteText; // 备注 |
|
|
|
|
|
private String ifsRowKey; // ifs的唯一行号 |
|
|
|
|
|
private String ifsRowId; // ifs的对象id |
|
|
|
|
|
private String ifsRowVersion; // ifs的版本号 |
|
|
|
|
|
private String displayWeightUom; // 重量 |
|
|
|
|
|
private String displayVolumeUom; // 体积 |
|
|
|
|
|
private String regUnit; |
|
|
private List<RecipeIfsItem> recipeIfsItems; |
|
|
private List<RecipeIfsItem> recipeIfsItems; |
|
|
|
|
|
|
|
|
public RecipeIfsAlternative() { |
|
|
public RecipeIfsAlternative() { |
|
|
@ -111,4 +114,27 @@ public class RecipeIfsAlternative { |
|
|
this.recipeIfsItems = recipeIfsItems; |
|
|
this.recipeIfsItems = recipeIfsItems; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public String getDisplayWeightUom() { |
|
|
|
|
|
return displayWeightUom; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setDisplayWeightUom(String displayWeightUom) { |
|
|
|
|
|
this.displayWeightUom = displayWeightUom; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public String getDisplayVolumeUom() { |
|
|
|
|
|
return displayVolumeUom; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setDisplayVolumeUom(String displayVolumeUom) { |
|
|
|
|
|
this.displayVolumeUom = displayVolumeUom; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public String getRegUnit() { |
|
|
|
|
|
return regUnit; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setRegUnit(String regUnit) { |
|
|
|
|
|
this.regUnit = regUnit; |
|
|
|
|
|
} |
|
|
} |
|
|
} |