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

eleme.openapi.sdk.api.enumeration.order.SuperVip Maven / Gradle / Ivy

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

public enum SuperVip {
    /**
     * 非会员
     */
    NOT_VIP("NOT_VIP"), 
    
    /**
     * 饿了么超级会员
     */
    ELEME_SUPER_VIP("ELEME_SUPER_VIP"), 
    
    /**
     * 饿了么星选超级会员
     */
    BAIDU_SUPER_VIP("BAIDU_SUPER_VIP");
    

    private String orderDesc;
    SuperVip(String orderDesc) {
        this.orderDesc = orderDesc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy