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

eleme.openapi.sdk.api.entity.order.PtOrderExtraInfo Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
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