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