Commit c0c4a05e761c6194de96316c2a23cbd6c4665bf7
1 parent
584e65a3f2
Exists in
master
and in
6 other branches
add log4j async flush disk
Showing 1 changed file with 17 additions and 0 deletions
platform-common/src/main/java/com/lyms/platform/common/enums/DeafEnums.java
View file @
c0c4a05
| 1 | +package com.lyms.platform.common.enums; | |
| 2 | + | |
| 3 | +/** | |
| 4 | + * | |
| 5 | + * 耳聾基因結果 | |
| 6 | + * Created by jiangjiazhi on 2017/5/24. | |
| 7 | + */ | |
| 8 | +public enum DeafEnums { | |
| 9 | + YSX(1,"野生型"),CHTB(2,"纯合突变"),FHZHTB(3,"复合杂合突变"),DZHTB(4,"单杂合突变"); | |
| 10 | + | |
| 11 | + private DeafEnums(Integer id,String name){ | |
| 12 | + this.id=id | |
| 13 | + ;this.name=name; | |
| 14 | + } | |
| 15 | + private Integer id; | |
| 16 | + private String name; | |
| 17 | +} |