unnamed.patch 1019 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
Index: platform-common/src/main/java/com/lyms/platform/common/enums/GestaMonthEnums.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- platform-common/src/main/java/com/lyms/platform/common/enums/GestaMonthEnums.java (revision e32ff84a0697f8da62dbaf509b5d9d23528a7dc8)
+++ platform-common/src/main/java/com/lyms/platform/common/enums/GestaMonthEnums.java (revision )
@@ -6,15 +6,15 @@
* @discription 分娩月份
*/
public enum GestaMonthEnums {
- ZM("足月", 9),
- EM("8月", 8),
- SEM("7月", 7),
- SM("6月", 6),
- FIM("5月", 5),
- FM("4月", 4),
- TRM("3月", 3),
+ OM("1月", 1),
TM("2月", 2),
- OM("1月", 1);
+ TRM("3月", 3),
+ FM("4月", 4),
+ FIM("5月", 5),
+ SM("6月", 6),
+ SEM("7月", 7),
+ EM("8月", 8),
+ ZM("足月", 9);
GestaMonthEnums(String name, int value) {
this.name = name;
this.value = value;