All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.ipokerface.weixin.proxy.coupon.CouponStatus Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.ipokerface.weixin.proxy.coupon;

/**
 * Created by       PokerFace
 * Create Date      2019-12-28.
 * Email:           [email protected]
 * Version          1.0.0
 * 

* Description: */ public enum CouponStatus { /** * 已激活 */ ACTIVATED(2), /** * 已锁定 */ LOCKED(4), /** * 已实扣 */ USED(8); private int val; CouponStatus(int val) { this.val = val; } public int getVal() { return val; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy