com.alipay.api.domain.KoubeiTradeOrderConsultModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 口碑订单预咨询
*
* @author auto create
* @since 1.0, 2017-09-01 11:24:28
*/
public class KoubeiTradeOrderConsultModel extends AlipayObject {
private static final long serialVersionUID = 4527373234447327897L;
/**
* 用户设备信息,通过钱包容器提供的JSAPI接口获取。
*/
@ApiField("apdid_token")
private String apdidToken;
/**
* 商品明细列表。注意:单品总金额不能大于订单金额
*/
@ApiListField("goods_info")
@ApiField("goods_info")
private List goodsInfo;
/**
* 唯一请求id,开放者请确保每次请求的唯一性
*/
@ApiField("request_id")
private String requestId;
/**
* 支付宝门店编号
*/
@ApiField("shop_id")
private String shopId;
// /**
// * 订单总金额,单位元,精确到小数点后两位,取值范围[0.01,999999999]
//如果同时传入了【不可打折金额】,【订单总金额】两者,则必须满足【不可打折金额】<=【订单总金额】
// */
@ApiField("total_amount")
private String totalAmount;
//
// /**
// * 不参与优惠计算的金额,单位为元,精确到小数点后两位,取值范围[0,999999999]
//如果同时传入了【不可打折金额】、【订单总金额】,则必须满足【不可打折金额】<=【订单总金额】
// */
@ApiField("undiscountable_amount")
private String undiscountableAmount;
/**
* 支付宝用户Id
*/
@ApiField("user_id")
private String userId;
public String getApdidToken() {
return this.apdidToken;
}
public void setApdidToken(String apdidToken) {
this.apdidToken = apdidToken;
}
public List getGoodsInfo() {
return this.goodsInfo;
}
public void setGoodsInfo(List goodsInfo) {
this.goodsInfo = goodsInfo;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getTotalAmount() {
return this.totalAmount;
}
public void setTotalAmount(String totalAmount) {
this.totalAmount = totalAmount;
}
public String getUndiscountableAmount() {
return this.undiscountableAmount;
}
public void setUndiscountableAmount(String undiscountableAmount) {
this.undiscountableAmount = undiscountableAmount;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy