Commit bf10103835a241097b3740727c0c37ac7d04d1ad

Authored by liquanyu
1 parent 405fd0a915

update

Showing 2 changed files with 2 additions and 2 deletions

platform-common/src/main/java/com/lyms/platform/common/enums/SexEnum.java View file @ bf10103
... ... @@ -5,7 +5,7 @@
5 5 * Created by Zhang.Rui on 2016/4/7.
6 6 */
7 7 public enum SexEnum {
8   - MAN(1, "男"), WOMAN(0, "女");
  8 + MAN(1, "男"), WOMAN(0, "女"), BM(2, "不明");
9 9  
10 10 private Integer id;
11 11 private String text;
platform-common/src/main/java/com/lyms/platform/common/enums/SexTypeEnums.java View file @ bf10103
... ... @@ -14,7 +14,7 @@
14 14 */
15 15 public enum SexTypeEnums {
16 16  
17   - BOY(1,"男孩"),GIRL(0,"女孩");
  17 + BOY(1,"男孩"),GIRL(0,"女孩"),BM(2,"不明");
18 18  
19 19 private SexTypeEnums(int id, String name) {
20 20 this.id = id;