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.
197 lines
3.9 KiB
197 lines
3.9 KiB
package com.spring.modules.project.data;
|
|
|
|
import com.spring.modules.part.vo.PartInformationVo;
|
|
import com.spring.modules.project.entity.PlmProjectPart;
|
|
import org.apache.ibatis.type.Alias;
|
|
|
|
import java.util.List;
|
|
|
|
@Alias("PlmProjectPartData")
|
|
public class PlmProjectPartData extends PlmProjectPart {
|
|
private String partTypeDesc;
|
|
|
|
private String username;
|
|
|
|
private String codeDesc;
|
|
|
|
private String umId;
|
|
|
|
private String type;
|
|
|
|
/**
|
|
* 项目名称
|
|
**/
|
|
private String projectName;
|
|
/**
|
|
* 客户编码
|
|
**/
|
|
private String customerNo;
|
|
/**
|
|
* 客户编码
|
|
**/
|
|
private String customerId;
|
|
/**
|
|
* 客户名称
|
|
**/
|
|
private String customerDesc;
|
|
|
|
private String groupName;
|
|
|
|
private String productGroupName1;
|
|
private String productGroupName2;
|
|
|
|
private List<PartInformationVo> partList;
|
|
|
|
private String status;
|
|
|
|
private String statusDesc;
|
|
|
|
private String plmPartNo;
|
|
private String nowBm;
|
|
|
|
private String customerPartNo;
|
|
|
|
public String getCustomerPartNo() {
|
|
return customerPartNo;
|
|
}
|
|
|
|
public void setCustomerPartNo(String customerPartNo) {
|
|
this.customerPartNo = customerPartNo;
|
|
}
|
|
|
|
public String getPlmPartNo() {
|
|
return plmPartNo;
|
|
}
|
|
|
|
public void setPlmPartNo(String plmPartNo) {
|
|
this.plmPartNo = plmPartNo;
|
|
}
|
|
|
|
public String getStatusDesc() {
|
|
return statusDesc;
|
|
}
|
|
|
|
public void setStatusDesc(String statusDesc) {
|
|
this.statusDesc = statusDesc;
|
|
}
|
|
|
|
public String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public List<PartInformationVo> getPartList() {
|
|
return partList;
|
|
}
|
|
|
|
public void setPartList(List<PartInformationVo> partList) {
|
|
this.partList = partList;
|
|
}
|
|
|
|
public String getCustomerId() {
|
|
return customerId;
|
|
}
|
|
|
|
public void setCustomerId(String customerId) {
|
|
this.customerId = customerId;
|
|
}
|
|
|
|
public String getProjectName() {
|
|
return projectName;
|
|
}
|
|
|
|
public void setProjectName(String projectName) {
|
|
this.projectName = projectName;
|
|
}
|
|
|
|
public String getCustomerNo() {
|
|
return customerNo;
|
|
}
|
|
|
|
public void setCustomerNo(String customerNo) {
|
|
this.customerNo = customerNo;
|
|
}
|
|
|
|
public String getCustomerDesc() {
|
|
return customerDesc;
|
|
}
|
|
|
|
public void setCustomerDesc(String customerDesc) {
|
|
this.customerDesc = customerDesc;
|
|
}
|
|
|
|
public String getPartTypeDesc() {
|
|
return partTypeDesc;
|
|
}
|
|
|
|
public void setPartTypeDesc(String partTypeDesc) {
|
|
this.partTypeDesc = partTypeDesc;
|
|
}
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
|
|
public String getCodeDesc() {
|
|
return codeDesc;
|
|
}
|
|
|
|
public void setCodeDesc(String codeDesc) {
|
|
this.codeDesc = codeDesc;
|
|
}
|
|
|
|
public String getGroupName() {
|
|
return groupName;
|
|
}
|
|
|
|
public void setGroupName(String groupName) {
|
|
this.groupName = groupName;
|
|
}
|
|
|
|
public String getProductGroupName1() {
|
|
return productGroupName1;
|
|
}
|
|
|
|
public void setProductGroupName1(String productGroupName1) {
|
|
this.productGroupName1 = productGroupName1;
|
|
}
|
|
|
|
public String getProductGroupName2() {
|
|
return productGroupName2;
|
|
}
|
|
|
|
public void setProductGroupName2(String productGroupName2) {
|
|
this.productGroupName2 = productGroupName2;
|
|
}
|
|
|
|
public String getUmId() {
|
|
return umId;
|
|
}
|
|
|
|
public void setUmId(String umId) {
|
|
this.umId = umId;
|
|
}
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public String getNowBm() {
|
|
return nowBm;
|
|
}
|
|
|
|
public void setNowBm(String nowBm) {
|
|
this.nowBm = nowBm;
|
|
}
|
|
}
|