eleme.openapi.sdk.api.enumeration.order.OrderSource Maven / Gradle / Ivy
package eleme.openapi.sdk.api.enumeration.order;
public enum OrderSource {
/**
* 饿了么
*/
ELEME("ELEME"),
/**
* 堂食订单
*/
TANGSHI("TANGSHI"),
/**
* 其他
*/
OTHERS("OTHERS");
private String orderDesc;
OrderSource(String orderDesc) {
this.orderDesc = orderDesc;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy