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

eleme.openapi.sdk.api.enumeration.product.ItemLabelDTO Maven / Gradle / Ivy

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

public enum ItemLabelDTO {
    /**
     * 新菜
     */
    NEW("NEW"), 
    
    /**
     * 招牌菜
     */
    FEATURED("FEATURED"), 
    
    /**
     * 辣
     */
    SPICY("SPICY");
    

    private String productDesc;
    ItemLabelDTO(String productDesc) {
        this.productDesc = productDesc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy