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

eleme.openapi.sdk.api.entity.market.OrderRequest Maven / Gradle / Ivy

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

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

public class OrderRequest{

    /**
     * 订购者商户店铺ID
     */
    private Integer merchantShopId;
    public Integer getMerchantShopId() {
        return merchantShopId;
    }
    public void setMerchantShopId(Integer merchantShopId) {
        this.merchantShopId = merchantShopId;
    }
    
    /**
     * 内购项目编号
     */
    private String no;
    public String getNo() {
        return no;
    }
    public void setNo(String no) {
        this.no = no;
    }
    
    /**
     * 订购数量
     */
    private Integer buyCount;
    public Integer getBuyCount() {
        return buyCount;
    }
    public void setBuyCount(Integer buyCount) {
        this.buyCount = buyCount;
    }
    
    /**
     * 下单渠道
     */
    private String channel;
    public String getChannel() {
        return channel;
    }
    public void setChannel(String channel) {
        this.channel = channel;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy