Pārlūkot izejas kodu

添加默认选中字段

zhoutg 5 gadi atpakaļ
vecāks
revīzija
0ae59e623c

+ 1 - 0
icss-service/src/main/java/com/diagbot/dto/QuestionDTO.java

@@ -43,6 +43,7 @@ public class QuestionDTO {
     private String uniqueName; //隐藏名称
     private String formulaCode;     //公式编码
     private Integer specFlag;//特殊标记(0:没有标记,1:主诉高亮,2:诱因记录)
+    private Integer selFlag; // 开启默认选中标记(0:不开启,1:开启)
     private String remark;//备注
 
 }

+ 5 - 0
icss-service/src/main/java/com/diagbot/entity/QuestionInfo.java

@@ -135,6 +135,11 @@ public class QuestionInfo implements Serializable {
      */
     private Integer specFlag;
 
+    /**
+     * 特殊标记(0:没有标记,1:主诉高亮,2:诱因记录)
+     */
+    private Integer selFlag;
+
     /**
      * 备注
      */

+ 2 - 0
icss-service/src/main/resources/mapper/QuestionInfoMapper.xml

@@ -25,6 +25,8 @@
         <result column="show_info" property="showInfo" />
         <result column="joint" property="joint" />
         <result column="formula_code" property="formulaCode" />
+        <result column="spec_flag" property="specFlag" />
+        <result column="sel_flag" property="selFlag" />
         <result column="remark" property="remark" />
     </resultMap>