第三方代收款协议内容及状态API
/**
* 第三方代收款协议内容
*/
@ApiField('third_party_agreement')
private String thirdPartyAgreement;
/**
* 代收款状态
*/
@ApiField('third_party_status')
private String thirdPartyStatus;
public void setAlipayUserId(String alipayUserId) {
this.alipayUserId = alipayUserId;
}
public String getAlipayUserId( ) {
return this.alipayUserId;
}
public void setAmount(String amount) {
this.amount = amount;
}
public String getAmount( ) {
return this.amount;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getCreateTime( ) {
return this.createTime;
}
public void setExpiresIn(Long expiresIn) {
this.expiresIn = expiresIn;
}
public Long getExpiresIn( ) {
return this.expiresIn;
}
public void setOutBizNo(String outBizNo) {
this.outBizNo = outBizNo;
}
public String getOutBizNo( ) {
return this.outBizNo;
}
public void setPaymentCode(String paymentCode) {
this.paymentCode = paymentCode;
}
public String getPaymentCode( ) {
return this.paymentCode;
}
public void setThirdPartyAgreement(String thirdPartyAgreement) {
this.thirdPartyAgreement = thirdPartyAgreement;
}
public String getThirdPartyAgreement( ) {
return this.thirdPartyAgreement;
}
public void setThirdPartyStatus(String thirdPartyStatus) {
this.thirdPartyStatus = thirdPartyStatus;
}
public String getThirdPartyStatus( ) {
return this.thirdPartyStatus;
}
}```
原文地址: http://www.cveoy.top/t/topic/lkRK 著作权归作者所有。请勿转载和采集!