From 257fada56815acc380c8e71f12784e4c002eb964 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Tue, 14 Apr 2026 15:30:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:[=E6=A8=A1=E6=9D=BF=E7=AE=A1=E7=90=86]?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/hxhq/business/domain/StudyFormFill.java | 12 ++++++++++++ .../src/main/java/com/hxhq/business/domain/Template.java | 11 +++++++++++ .../main/resources/mapper/business/StudyFormFillMapper.xml | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/StudyFormFill.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/StudyFormFill.java index f8e3ec8..c9d98a4 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/StudyFormFill.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/StudyFormFill.java @@ -162,6 +162,10 @@ public class StudyFormFill extends MpBaseEntity @TableField(exist = false) private String templateShowYjcc; + /** 仅提交:1否;10是 */ + @TableField(exist = false) + private Integer onlySubmit; + /** 试验编号 */ @TableField(exist = false) private String studySn; @@ -178,6 +182,14 @@ public class StudyFormFill extends MpBaseEntity @TableField(exist = false) private Integer showBlxjsh; + public Integer getOnlySubmit() { + return onlySubmit; + } + + public void setOnlySubmit(Integer onlySubmit) { + this.onlySubmit = onlySubmit; + } + public Integer getShowBlxjsh() { return showBlxjsh; } 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 3de9549..fd5c9ab 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 @@ -58,6 +58,9 @@ public class Template extends MpBaseEntity /** 是否需要病理学家审核:1:否;10:是 */ private Integer showBlxjsh; + /** 仅提交:1否;10是 */ + private Integer onlySubmit; + /** 所属试验类型:1试验,5非试验表单,10麻精药表单 */ private String studyType; @@ -77,6 +80,14 @@ public class Template extends MpBaseEntity @TableField(exist = false) private String deptName; + public Integer getOnlySubmit() { + return onlySubmit; + } + + public void setOnlySubmit(Integer onlySubmit) { + this.onlySubmit = onlySubmit; + } + public Integer getShowBlxjsh() { return showBlxjsh; } diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/StudyFormFillMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/StudyFormFillMapper.xml index d0b2408..525995e 100644 --- a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/StudyFormFillMapper.xml +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/StudyFormFillMapper.xml @@ -19,7 +19,7 @@