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

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

The newest version!
package eleme.openapi.sdk.api.enumeration.activity;

public enum PresentResult {
    /**
     * 发放成功
     */
    SUCCESS("SUCCESS"), 
    
    /**
     * 手机号码有误
     */
    ILLEGAL_MOBILE("ILLEGAL_MOBILE"), 
    
    /**
     * 获取用户信息失败
     */
    NO_USER("NO_USER"), 
    
    /**
     * 发放失败,请稍后重试
     */
    PRESENT_FAILURE("PRESENT_FAILURE");
    

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy