|
@@ -12,28 +12,18 @@ import lombok.Setter;
|
|
|
@Setter
|
|
|
@Getter
|
|
|
public class IndexConfigDTO {
|
|
|
- private Long id;
|
|
|
|
|
|
- /**
|
|
|
- * 指标公表名
|
|
|
- */
|
|
|
- private String indexUnique;
|
|
|
-
|
|
|
- /**
|
|
|
- * 疾病id
|
|
|
- */
|
|
|
- private Long diseaseId;
|
|
|
+ private Long uniqueId;// 指标公表概念id
|
|
|
+
|
|
|
+ private Long diseaseId;// 疾病概念id
|
|
|
|
|
|
- private Long indexDesc;
|
|
|
- /**
|
|
|
- * 显示顺序
|
|
|
- */
|
|
|
- private Integer orderNo;
|
|
|
+ private Integer groupType;// 指标项组别
|
|
|
+
|
|
|
+ private Integer orderNo;// 显示顺序
|
|
|
+
|
|
|
+ private String indexUnique;// 指标公表名
|
|
|
|
|
|
- /**
|
|
|
- * 备注
|
|
|
- */
|
|
|
- private String remark;
|
|
|
+ private String diseaseName;// 疾病概念名
|
|
|
|
|
|
|
|
|
}
|