Commit f3c6d79dce99921fbe5d20d7e7c4a6c28a92f478

Authored by yangfei
1 parent 04ae4377bc

随访列表初始化数据

Showing 3 changed files with 3 additions and 1 deletions

platform-common/src/main/java/com/lyms/platform/common/enums/IsCloseEnums.java View file @ f3c6d79
... ... @@ -7,7 +7,7 @@
7 7 */
8 8 public enum IsCloseEnums {
9 9 ISJA(1, "结案"),
10   - ISWJA(2, "未结案");
  10 + ISWJA(0, "未结案");
11 11  
12 12 private int id;
13 13 private String name;
platform-common/src/main/java/com/lyms/platform/common/enums/SourceEnums.java View file @ f3c6d79
... ... @@ -7,6 +7,7 @@
7 7 */
8 8 public enum SourceEnums {
9 9 ISJA(1, "本院"),
  10 + ALL(4, "全部"),
10 11 ISWJA(2, "*医院");
11 12 private int id;
12 13 private String name;
platform-common/src/main/java/com/lyms/platform/common/enums/TreatmentEnums.java View file @ f3c6d79
... ... @@ -6,6 +6,7 @@
6 6 * @discription
7 7 */
8 8 public enum TreatmentEnums {
  9 + // 0-未干预治疗,1-人工耳蜗,2-助听器,3-手术
9 10 RGEW(1, "人工耳蜗"),
10 11 SHS(3, "手术"),
11 12 ZTQ(2, "助听器");