2 Commits
2668d92841
...
1b3fbcb95c
| Author | SHA1 | Message | Date |
|---|---|---|---|
|
|
1b3fbcb95c |
Merge remote-tracking branch 'origin/master'
|
3 months ago |
|
|
f0e1dc21b0 |
IFS BOM Recipe 结构复制
|
3 months ago |
5 changed files with 343 additions and 1 deletions
-
55src/main/java/com/spring/ifs/api/BomApi.java
-
54src/main/java/com/spring/ifs/api/RecipeApi.java
-
28src/main/java/com/spring/ifs/bean/BomServiceBean.java
-
32src/main/java/com/spring/ifs/bean/RecipeServiceBean.java
-
175src/main/java/com/spring/ifs/data/CopyBomStructureData.java
@ -0,0 +1,175 @@ |
|||
package com.spring.ifs.data; |
|||
|
|||
/** |
|||
* @author LR |
|||
* @version 1.0 |
|||
* @description: copy Bom recipe 使用 |
|||
* @date 2026/3/30 16:30 |
|||
*/ |
|||
public class CopyBomStructureData { |
|||
private String fromContract; |
|||
private String fromPartNo; |
|||
private String fromEngChgLevel; |
|||
private String fromBomType; |
|||
private String fromAlternativeNo; |
|||
private String toContract; |
|||
private String toPartNo; |
|||
private String toEngChgLevel; |
|||
private String toBomType; |
|||
private String toAlternativeNo; |
|||
private String toEffPhaseInDate; |
|||
private String toEffPhaseOutDate; |
|||
private String copyAttachDocuments; |
|||
private String copyMro; |
|||
private String copyAltStatus; |
|||
private String copyForReplace; |
|||
private String ifsUsername; |
|||
private String ifsPassword; |
|||
|
|||
public CopyBomStructureData() { |
|||
} |
|||
|
|||
public String getFromContract() { |
|||
return fromContract; |
|||
} |
|||
|
|||
public void setFromContract(String fromContract) { |
|||
this.fromContract = fromContract; |
|||
} |
|||
|
|||
public String getFromPartNo() { |
|||
return fromPartNo; |
|||
} |
|||
|
|||
public void setFromPartNo(String fromPartNo) { |
|||
this.fromPartNo = fromPartNo; |
|||
} |
|||
|
|||
public String getFromEngChgLevel() { |
|||
return fromEngChgLevel; |
|||
} |
|||
|
|||
public void setFromEngChgLevel(String fromEngChgLevel) { |
|||
this.fromEngChgLevel = fromEngChgLevel; |
|||
} |
|||
|
|||
public String getFromBomType() { |
|||
return fromBomType; |
|||
} |
|||
|
|||
public void setFromBomType(String fromBomType) { |
|||
this.fromBomType = fromBomType; |
|||
} |
|||
|
|||
public String getFromAlternativeNo() { |
|||
return fromAlternativeNo; |
|||
} |
|||
|
|||
public void setFromAlternativeNo(String fromAlternativeNo) { |
|||
this.fromAlternativeNo = fromAlternativeNo; |
|||
} |
|||
|
|||
public String getToContract() { |
|||
return toContract; |
|||
} |
|||
|
|||
public void setToContract(String toContract) { |
|||
this.toContract = toContract; |
|||
} |
|||
|
|||
public String getToPartNo() { |
|||
return toPartNo; |
|||
} |
|||
|
|||
public void setToPartNo(String toPartNo) { |
|||
this.toPartNo = toPartNo; |
|||
} |
|||
|
|||
public String getToEngChgLevel() { |
|||
return toEngChgLevel; |
|||
} |
|||
|
|||
public void setToEngChgLevel(String toEngChgLevel) { |
|||
this.toEngChgLevel = toEngChgLevel; |
|||
} |
|||
|
|||
public String getToBomType() { |
|||
return toBomType; |
|||
} |
|||
|
|||
public void setToBomType(String toBomType) { |
|||
this.toBomType = toBomType; |
|||
} |
|||
|
|||
public String getToAlternativeNo() { |
|||
return toAlternativeNo; |
|||
} |
|||
|
|||
public void setToAlternativeNo(String toAlternativeNo) { |
|||
this.toAlternativeNo = toAlternativeNo; |
|||
} |
|||
|
|||
public String getToEffPhaseInDate() { |
|||
return toEffPhaseInDate; |
|||
} |
|||
|
|||
public void setToEffPhaseInDate(String toEffPhaseInDate) { |
|||
this.toEffPhaseInDate = toEffPhaseInDate; |
|||
} |
|||
|
|||
public String getToEffPhaseOutDate() { |
|||
return toEffPhaseOutDate; |
|||
} |
|||
|
|||
public void setToEffPhaseOutDate(String toEffPhaseOutDate) { |
|||
this.toEffPhaseOutDate = toEffPhaseOutDate; |
|||
} |
|||
|
|||
public String getCopyAttachDocuments() { |
|||
return copyAttachDocuments; |
|||
} |
|||
|
|||
public void setCopyAttachDocuments(String copyAttachDocuments) { |
|||
this.copyAttachDocuments = copyAttachDocuments; |
|||
} |
|||
|
|||
public String getCopyMro() { |
|||
return copyMro; |
|||
} |
|||
|
|||
public void setCopyMro(String copyMro) { |
|||
this.copyMro = copyMro; |
|||
} |
|||
|
|||
public String getCopyAltStatus() { |
|||
return copyAltStatus; |
|||
} |
|||
|
|||
public void setCopyAltStatus(String copyAltStatus) { |
|||
this.copyAltStatus = copyAltStatus; |
|||
} |
|||
|
|||
public String getCopyForReplace() { |
|||
return copyForReplace; |
|||
} |
|||
|
|||
public void setCopyForReplace(String copyForReplace) { |
|||
this.copyForReplace = copyForReplace; |
|||
} |
|||
|
|||
public String getIfsUsername() { |
|||
return ifsUsername; |
|||
} |
|||
|
|||
public void setIfsUsername(String ifsUsername) { |
|||
this.ifsUsername = ifsUsername; |
|||
} |
|||
|
|||
public String getIfsPassword() { |
|||
return ifsPassword; |
|||
} |
|||
|
|||
public void setIfsPassword(String ifsPassword) { |
|||
this.ifsPassword = ifsPassword; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue