Commit 32050baeb2b838127ed38f6161a5269185212fb7
1 parent
b6f6265758
Exists in
master
and in
6 other branches
修改机构组发放产检劵
Showing 1 changed file with 37 additions and 0 deletions
platform-common/src/main/java/com/lyms/platform/common/enums/TicketTypeEnums.java
View file @
32050ba
1 | +package com.lyms.platform.common.enums; | |
2 | + | |
3 | +/** | |
4 | + * 产检劵发放类型 | |
5 | + * <p/> | |
6 | + * 详细描述 | |
7 | + * <p/> | |
8 | + * 示例代码 | |
9 | + * <pre> | |
10 | + * </pre/> | |
11 | + * | |
12 | + * @author JIAZHI.JIANG | |
13 | + * @version BME V100R001 2017/4/1 0001 | |
14 | + * @since BME V100R001C40B104 | |
15 | + */ | |
16 | +public enum TicketTypeEnums | |
17 | +{ //发5张 | |
18 | + TICKTE_ALL(0), | |
19 | + //按孕周发 | |
20 | + DUE_WEEK_SUPPLY(1); | |
21 | + | |
22 | + | |
23 | + private TicketTypeEnums (int type){ | |
24 | + this.type=type; | |
25 | + } | |
26 | + private Integer type; | |
27 | + | |
28 | + public Integer getType() | |
29 | + { | |
30 | + return type; | |
31 | + } | |
32 | + | |
33 | + public void setType(Integer type) | |
34 | + { | |
35 | + this.type = type; | |
36 | + } | |
37 | +} |