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.
69 lines
1.1 KiB
69 lines
1.1 KiB
package com.spring.modules.sampleManagement.entity;
|
|
|
|
public class PlmTechnicalSpecificationTeam {
|
|
/**
|
|
* 工厂编码
|
|
*/
|
|
private String site;
|
|
|
|
/**
|
|
* 参数卡编码
|
|
*/
|
|
private String codeNo;
|
|
|
|
/**
|
|
* 员工编码
|
|
*/
|
|
private String operatorId;
|
|
|
|
/**
|
|
* 角色
|
|
*/
|
|
private String type;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private Integer id;
|
|
|
|
public String getSite() {
|
|
return site;
|
|
}
|
|
|
|
public void setSite(String site) {
|
|
this.site = site;
|
|
}
|
|
|
|
public String getCodeNo() {
|
|
return codeNo;
|
|
}
|
|
|
|
public void setCodeNo(String codeNo) {
|
|
this.codeNo = codeNo;
|
|
}
|
|
|
|
public String getOperatorId() {
|
|
return operatorId;
|
|
}
|
|
|
|
public void setOperatorId(String operatorId) {
|
|
this.operatorId = operatorId;
|
|
}
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
}
|
|
|