diff --git a/platform-common/src/main/java/com/lyms/platform/common/enums/TicketTypeEnums.java b/platform-common/src/main/java/com/lyms/platform/common/enums/TicketTypeEnums.java new file mode 100644 index 0000000..96feaf8 --- /dev/null +++ b/platform-common/src/main/java/com/lyms/platform/common/enums/TicketTypeEnums.java @@ -0,0 +1,37 @@ +package com.lyms.platform.common.enums; + +/** + * 产检劵发放类型 + *

+ * 详细描述 + *

+ * 示例代码 + *

+ * 
+ * + * @author JIAZHI.JIANG + * @version BME V100R001 2017/4/1 0001 + * @since BME V100R001C40B104 + */ +public enum TicketTypeEnums +{ //发5张 + TICKTE_ALL(0), + //按孕周发 + DUE_WEEK_SUPPLY(1); + + + private TicketTypeEnums (int type){ + this.type=type; + } + private Integer type; + + public Integer getType() + { + return type; + } + + public void setType(Integer type) + { + this.type = type; + } +}