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

cn.ipokerface.weixin.proxy.coupon.CouponStockStatus 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 CouponStockStatus { /** * 未激活 */ INACTIVE(1), /** * 审批中 */ APPROVAL_PROCESS(2), /** * 已激活 */ ACTIVATED(4), /** * 已作废 */ SUPERSEDED(8), /** * 中止发放 */ SUSPEND(16); private int val; CouponStockStatus(int val) { this.val = val; } public int getVal() { return val; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy