|
@@ -24,15 +24,18 @@ public class QuestionDTO {
|
|
|
private Integer controlType; //控件类型
|
|
|
private Integer subType; //子类型
|
|
|
private String tagType; //标签标识(0:单项 1:组合项 2:填充项)
|
|
|
- private String addLine; //添加换行符(0:不换行,1:换行)
|
|
|
private String labelPrefix; //前置内容
|
|
|
private String labelSuffix; //后置内容
|
|
|
private BigDecimal minValue; //最小值
|
|
|
private BigDecimal maxValue; //最大值
|
|
|
+ private Integer position; //显示位置(0:在标签后,1:在标签前)
|
|
|
+ private Integer formPosition; //填写单显示位置(0:左, 1:上)
|
|
|
+ private Integer textGenerate; //显示位置(0:在标签后,1:在标签前)
|
|
|
+ private Integer symptomType; //主症状和伴随症状对应的question类型
|
|
|
+ private Integer exclusionType; //互斥类型
|
|
|
private String judgeType; //判断类型(0:本身异常;1:本身正常;2:数字范围;3:计算公式;9:无需判断)
|
|
|
- private String copyType;//是否显示 + (0:不显示 1 :显示)
|
|
|
+ private String copyType;//是否复制
|
|
|
private List<QuestionDetail> questionDetailList = new ArrayList<>(); //标签明细表
|
|
|
private List<QuestionDTO> questionMapping = new ArrayList<>(); //下级标签
|
|
|
-// private List<QuestionDTO> questionRelationList = new ArrayList<>(); //同级标签
|
|
|
private String remark;//备注
|
|
|
}
|