|
|
|
@@ -0,0 +1,35 @@ |
|
|
|
package com.iformall.enums; |
|
|
|
|
|
|
|
/** |
|
|
|
* Created by Stormeye on 2018/08/09. |
|
|
|
*/ |
|
|
|
public enum EnumCouponSendSms { |
|
|
|
|
|
|
|
YES(1, "发送"), |
|
|
|
NO(0, "不发送"); |
|
|
|
|
|
|
|
public static EnumCouponSendSms getEnum(Integer code) { |
|
|
|
for (EnumCouponSendSms value : values()) { |
|
|
|
if (value.getCode().equals(code)) { |
|
|
|
return value; |
|
|
|
} |
|
|
|
} |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|
private Integer code; |
|
|
|
private String message; |
|
|
|
|
|
|
|
EnumCouponSendSms(Integer code, String message) { |
|
|
|
this.code = code; |
|
|
|
this.message = message; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getCode() { |
|
|
|
return code; |
|
|
|
} |
|
|
|
|
|
|
|
public String getMessage() { |
|
|
|
return message; |
|
|
|
} |
|
|
|
} |