eleme.openapi.sdk.api.entity.order.PtOrderExtraInfo Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.order;
import eleme.openapi.sdk.api.enumeration.order.*;
import eleme.openapi.sdk.api.entity.order.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class PtOrderExtraInfo{
/**
* 饿了么订单id
*/
private Long orderId;
public Long getOrderId() {
return orderId;
}
public void setOrderId(Long orderId) {
this.orderId = orderId;
}
/**
* 拼团角色
*/
private String gatherRole;
public String getGatherRole() {
return gatherRole;
}
public void setGatherRole(String gatherRole) {
this.gatherRole = gatherRole;
}
/**
* 店铺当日订单流水号
*/
private int daySn;
public int getDaySn() {
return daySn;
}
public void setDaySn(int daySn) {
this.daySn = daySn;
}
/**
* 订单详细类目的列表
*/
private List groups;
public List getGroups() {
return groups;
}
public void setGroups(List groups) {
this.groups = groups;
}
/**
* 订单总价,用户实际支付的金额,单位:元
*/
private double totalPrice;
public double getTotalPrice() {
return totalPrice;
}
public void setTotalPrice(double totalPrice) {
this.totalPrice = totalPrice;
}
/**
* 备注
*/
private String description;
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy