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

eleme.openapi.sdk.api.enumeration.activity.CouponStatus Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.enumeration.activity;

public enum CouponStatus {
    /**
     * 未使用
     */
    UNUSED("UNUSED"), 
    
    /**
     * 已使用
     */
    USED("USED"), 
    
    /**
     * 已锁定
     */
    LOCKED("LOCKED"), 
    
    /**
     * 已过期
     */
    EXPIRED("EXPIRED");
    

    private String activityDesc;
    CouponStatus(String activityDesc) {
        this.activityDesc = activityDesc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy