|
@@ -0,0 +1,29 @@
|
|
|
+package com.diagbot.dto;
|
|
|
+
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
+/**
|
|
|
+ *
|
|
|
+ * @author wangfeng
|
|
|
+ * @Description: TODO
|
|
|
+ * @date 2019年2月13日 上午10:37:26
|
|
|
+ */
|
|
|
+@Setter
|
|
|
+@Getter
|
|
|
+public class PacsConfigDTO {
|
|
|
+
|
|
|
+ private Long id;
|
|
|
+ /**
|
|
|
+ * 医院id
|
|
|
+ */
|
|
|
+ private String hospitalId;
|
|
|
+ /**
|
|
|
+ * 套餐名
|
|
|
+ */
|
|
|
+ private String mealName;
|
|
|
+ /**
|
|
|
+ * 公表明
|
|
|
+ */
|
|
|
+ private String uniqueName;
|
|
|
+}
|