From ce05a10e83d990669794117a7a20c819d8859d46 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Thu, 5 Feb 2026 17:58:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:[=E6=A8=A1=E6=9D=BF=E7=AE=A1=E7=90=86]?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/hxhq/business/domain/Template.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Template.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Template.java index 33b6087..83fb0c2 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Template.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Template.java @@ -52,6 +52,9 @@ public class Template extends MpBaseEntity /** 填报显示观察按钮:1:否;10:显示 */ private Integer showGc; + /** 所属试验类型:1试验,5非试验表单,10麻精药表单,20全部 */ + private Integer studyType; + /** 显示的编号 */ private String showSn; @@ -65,6 +68,14 @@ public class Template extends MpBaseEntity @TableField(exist = false) private String deptName; + public Integer getStudyType() { + return studyType; + } + + public void setStudyType(Integer studyType) { + this.studyType = studyType; + } + public String getPdfSize() { return pdfSize; }