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

eleme.openapi.sdk.api.entity.enterprise.IsvOrderRelateReqDto Maven / Gradle / Ivy

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

import eleme.openapi.sdk.api.entity.enterprise.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;

public class IsvOrderRelateReqDto{

    /**
     * 第三方订单号
     */
    private String merchantOrderId;
    public String getMerchantOrderId() {
        return merchantOrderId;
    }
    public void setMerchantOrderId(String merchantOrderId) {
        this.merchantOrderId = merchantOrderId;
    }
    
    /**
     * 订单实际支付金额
     */
    private Double orderPrice;
    public Double getOrderPrice() {
        return orderPrice;
    }
    public void setOrderPrice(Double orderPrice) {
        this.orderPrice = orderPrice;
    }
    
    /**
     * 企餐订单号
     */
    private String elemeEbuOrderId;
    public String getElemeEbuOrderId() {
        return elemeEbuOrderId;
    }
    public void setElemeEbuOrderId(String elemeEbuOrderId) {
        this.elemeEbuOrderId = elemeEbuOrderId;
    }
    
    /**
     * 店铺id
     */
    private Long shopId;
    public Long getShopId() {
        return shopId;
    }
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
    
    /**
     * 用餐人数
     */
    private Integer presentPersonNum;
    public Integer getPresentPersonNum() {
        return presentPersonNum;
    }
    public void setPresentPersonNum(Integer presentPersonNum) {
        this.presentPersonNum = presentPersonNum;
    }
    
    /**
     * 菜品详情
     */
    private List itemList;
    public List getItemList() {
        return itemList;
    }
    public void setItemList(List itemList) {
        this.itemList = itemList;
    }
    
    /**
     * 第三方传入优惠金额
     */
    private BigDecimal discountAmount;
    public BigDecimal getDiscountAmount() {
        return discountAmount;
    }
    public void setDiscountAmount(BigDecimal discountAmount) {
        this.discountAmount = discountAmount;
    }
    
    /**
     * 优惠类型
     */
    private String discountType;
    public String getDiscountType() {
        return discountType;
    }
    public void setDiscountType(String discountType) {
        this.discountType = discountType;
    }
    
    /**
     * 优惠描述
     */
    private String discountDesc;
    public String getDiscountDesc() {
        return discountDesc;
    }
    public void setDiscountDesc(String discountDesc) {
        this.discountDesc = discountDesc;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy