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; } }