|
|
|
@ -55,8 +55,11 @@ public class Template extends MpBaseEntity |
|
|
|
/** 填报显示药剂存储按钮:1:否;10:显示 */ |
|
|
|
private Integer showYjcc; |
|
|
|
|
|
|
|
/** 所属试验类型:1试验,5非试验表单,10麻精药表单,20全部 */ |
|
|
|
private Integer studyType; |
|
|
|
/** 所属试验类型:1试验,5非试验表单,10麻精药表单 */ |
|
|
|
private String studyType; |
|
|
|
|
|
|
|
/** 所属试验表单类型:1预填表单,5填报表单,10,配置计划表,15,麻精药领取申请 */ |
|
|
|
private String studyFormType; |
|
|
|
|
|
|
|
/** 显示的编号 */ |
|
|
|
private String showSn; |
|
|
|
@ -71,6 +74,14 @@ public class Template extends MpBaseEntity |
|
|
|
@TableField(exist = false) |
|
|
|
private String deptName; |
|
|
|
|
|
|
|
public String getStudyFormType() { |
|
|
|
return studyFormType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStudyFormType(String studyFormType) { |
|
|
|
this.studyFormType = studyFormType; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getShowYjcc() { |
|
|
|
return showYjcc; |
|
|
|
} |
|
|
|
@ -79,11 +90,11 @@ public class Template extends MpBaseEntity |
|
|
|
this.showYjcc = showYjcc; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getStudyType() { |
|
|
|
public String getStudyType() { |
|
|
|
return studyType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStudyType(Integer studyType) { |
|
|
|
public void setStudyType(String studyType) { |
|
|
|
this.studyType = studyType; |
|
|
|
} |
|
|
|
|
|
|
|
|