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.
175 lines
4.0 KiB
175 lines
4.0 KiB
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;
|
|
}
|
|
}
|