eleme.openapi.sdk.api.enumeration.product.ItemLabelDTO Maven / Gradle / Ivy
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