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.
40 lines
667 B
40 lines
667 B
package com.connor.jd.plm.dialog;
|
|
|
|
public class DocumentTemplate {
|
|
private String type;// 模板类型
|
|
private String[] relation;// 数据集关系
|
|
private String uid;// 模板uid
|
|
|
|
public DocumentTemplate(String type, String uid, String[] relation) {
|
|
super();
|
|
this.type = type;
|
|
this.relation = relation;
|
|
this.uid = uid;
|
|
}
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public String[] getRelation() {
|
|
return relation;
|
|
}
|
|
|
|
public void setRelation(String[] relation) {
|
|
this.relation = relation;
|
|
}
|
|
|
|
public String getUid() {
|
|
return uid;
|
|
}
|
|
|
|
public void setUid(String uid) {
|
|
this.uid = uid;
|
|
}
|
|
|
|
}
|