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

cn.ipokerface.weixin.proxy.coupon.CouponType 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 CouponType { /** * 使用无门槛 */ NO_THRESHOLD(1), /** * 使用有门槛 */ HAS_THRESHOLD(2), /** * 门槛叠加 */ THRESHOLD_PLUS(3), /** * 充值代金券 */ CASH(-1), /** * 非充值代金券 */ NO_CASH(-2); private int val; CouponType(int val) { this.val = val; } public int getVal() { return val; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy