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 88bd9e3..3992322 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 @@ -135,6 +135,10 @@ public class StudyFormFill extends MpBaseEntity @TableField(exist = false) private String templateExportMethod; + /** 产物:1:试剂;3:给药制剂;5:麻精药 */ + @TableField(exist = false) + private Integer product; + /** 模板所属部门/学科 */ @TableField(exist = false) private Long templateDeptId; @@ -147,6 +151,14 @@ public class StudyFormFill extends MpBaseEntity @TableField(exist = false) private String studyMc; + public Integer getProduct() { + return product; + } + + public void setProduct(Integer product) { + this.product = product; + } + public String getYqResource() { return yqResource; } 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 dd21de5..9b1c204 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 @@ -18,7 +18,7 @@