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

eleme.openapi.sdk.api.enumeration.shop.OBusyLevel Maven / Gradle / Ivy

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

public enum OBusyLevel {
    /**
     * 未知状态
     */
    others("others"), 
    
    /**
     * 店铺正常营业
     */
    busyLevelFree("busyLevelFree"), 
    
    /**
     * 店铺休息中
     */
    busyLevelClosed("busyLevelClosed"), 
    
    /**
     * 店铺网络不稳定/电话订餐
     */
    busyLevelNetworkUnstable("busyLevelNetworkUnstable"), 
    
    /**
     * 店铺休假中
     */
    busyLevelHoliday("busyLevelHoliday");
    

    private String shopDesc;
    OBusyLevel(String shopDesc) {
        this.shopDesc = shopDesc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy