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.
42 lines
934 B
42 lines
934 B
package com.spring.ifs.data;
|
|
|
|
/**
|
|
* @ClassName: CustomerOrderData
|
|
* @Description:客户订单的信息
|
|
* @author: LR
|
|
* @date: 2022年12月9日 下午1:59:55
|
|
* @Copyright:
|
|
*/
|
|
public class BomAlternative extends BomHeader {
|
|
private String alternativeNo;// 替代编码
|
|
private String alternativeDesc;// 替代描述
|
|
private String state;//状态
|
|
|
|
public BomAlternative() {
|
|
super();
|
|
}
|
|
|
|
public String getAlternativeNo() {
|
|
return alternativeNo;
|
|
}
|
|
|
|
public void setAlternativeNo(String alternativeNo) {
|
|
this.alternativeNo = alternativeNo;
|
|
}
|
|
|
|
public String getAlternativeDesc() {
|
|
return alternativeDesc;
|
|
}
|
|
|
|
public void setAlternativeDesc(String alternativeDesc) {
|
|
this.alternativeDesc = alternativeDesc;
|
|
}
|
|
|
|
public String getState() {
|
|
return state;
|
|
}
|
|
|
|
public void setState(String state) {
|
|
this.state = state;
|
|
}
|
|
}
|