Commit 80d13f02dba3eacf4ff682caa10f69bd800ed813
1 parent
f30a2fb141
Exists in
master
and in
1 other branch
bug fix
Showing 3 changed files with 3 additions and 3 deletions
platform-common/src/main/java/com/lyms/platform/common/enums/CfEnums.java
View file @
80d13f0
platform-common/src/main/java/com/lyms/platform/common/enums/DeathCauseEnums.java
View file @
80d13f0
... | ... | @@ -8,7 +8,7 @@ |
8 | 8 | public enum DeathCauseEnums { |
9 | 9 | O("产科出血", "1"), O2("妊娠高血压疾病", "2"), O3("内科合并症", "3"), O4("羊水栓塞", "4"), O5("其他", "5"); |
10 | 10 | |
11 | - private DeathCauseEnums(String id, String name) { | |
11 | + private DeathCauseEnums( String name, String id) { | |
12 | 12 | this.id = id; |
13 | 13 | this.name = name; |
14 | 14 | } |
platform-common/src/main/java/com/lyms/platform/common/enums/SXCauseEnums.java
View file @
80d13f0