
com.alipay.api.response.KoubeiMallScanpurchaseTradePayResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.mall.scanpurchase.trade.pay response.
*
* @author auto create
* @since 1.0, 2023-08-21 03:03:13
*/
public class KoubeiMallScanpurchaseTradePayResponse extends AlipayResponse {
private static final long serialVersionUID = 1538475766696387958L;
/**
* 支付宝收银单号
*/
@ApiField("cashier_id")
private String cashierId;
/**
* 口碑商圈订单ID
*/
@ApiField("order_id")
private String orderId;
/**
* 支付宝交易号
*/
@ApiField("trade_no")
private String tradeNo;
public void setCashierId(String cashierId) {
this.cashierId = cashierId;
}
public String getCashierId( ) {
return this.cashierId;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public String getOrderId( ) {
return this.orderId;
}
public void setTradeNo(String tradeNo) {
this.tradeNo = tradeNo;
}
public String getTradeNo( ) {
return this.tradeNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy