package com.iotechn.unimall.data.enums; import com.dobbinsoft.fw.core.enums.BaseEnums; /** * Created by rize on 2019/2/13. */ public enum CouponType implements BaseEnums { COMMON(1, "普通券"), CDKEY(2, "兑换券"), ; CouponType(int code, String msg) { this.code = code; this.msg = msg; } private int code; private String msg; public Integer getCode() { return code; } public String getMsg() { return msg; } }