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

eleme.openapi.sdk.api.enumeration.card.AccountCode Maven / Gradle / Ivy

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

public enum AccountCode {
    /**
     * 积分
     */
    POINT("POINT"), 
    
    /**
     * 余额
     */
    BALANCE("BALANCE"), 
    
    /**
     * 券数量
     */
    TICKET_NUM("TICKET_NUM");
    

    private String cardDesc;
    AccountCode(String cardDesc) {
        this.cardDesc = cardDesc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy