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.
123 lines
2.5 KiB
123 lines
2.5 KiB
package com.spring.modules.project.data;
|
|
|
|
import com.spring.modules.project.entity.PlmProjectPart;
|
|
import org.apache.ibatis.type.Alias;
|
|
|
|
@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 customerDesc;
|
|
|
|
private String groupName;
|
|
|
|
private String productGroupName1;
|
|
private String productGroupName2;
|
|
|
|
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;
|
|
}
|
|
}
|