18339543638 5 miesięcy temu
rodzic
commit
777f16d9e8

+ 4 - 4
tr-modules/tr-module-smartFollowUp/src/main/java/cn/tr/module/smart/common/dto/BizQuestionGroupDTO.java

@@ -31,10 +31,10 @@ public class BizQuestionGroupDTO extends BaseDTO  {
     @ApiModelProperty(value = "问卷类型", position = 3)
     private String type;
 
-    @ApiModelProperty(value = "医院的问卷版本号", position = 8)
-    private Integer verison;
+    @ApiModelProperty("术后推送间隔(小时)")
+    private Integer interval;
 
-    @ApiModelProperty(value = "md5", position = 9)
-    private String md5;
+    @ApiModelProperty("术后推送频率(次)")
+    private Integer frequency;
 
 }

+ 8 - 0
tr-modules/tr-module-smartFollowUp/src/main/java/cn/tr/module/smart/common/po/BizQuestionGroupPO.java

@@ -30,6 +30,9 @@ public class BizQuestionGroupPO extends TenantPO {
     @ApiModelProperty(value = "问卷名称", position = 2)
     private String name;
 
+    @ApiModelProperty(value = "医院的问卷版本号", position = 8)
+    private Integer version;
+
     /**
      * {@link QuestionGroupTypeEnums}
      * 问卷类型
@@ -37,4 +40,9 @@ public class BizQuestionGroupPO extends TenantPO {
     @ApiModelProperty(value = "问卷类型", position = 3)
     private String type;
 
+    @ApiModelProperty("术后推送间隔(小时)")
+    private Integer interval;
+
+    @ApiModelProperty("术后推送频率(次)")
+    private Integer frequency;
 }