cn.com.antcloud.api.ato.v1_0.request.SyncFundOrderfulfillmentRequest Maven / Gradle / Ivy
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.ato.v1_0.request;
import cn.com.antcloud.api.ato.v1_0.response.SyncFundOrderfulfillmentResponse;
import cn.com.antcloud.api.product.AntCloudProdRequest;
import java.lang.Long;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 资方回传一条订单还款履约信息 */
public class SyncFundOrderfulfillmentRequest extends AntCloudProdRequest {
@NotNull
private String merchantTenantId;
@NotNull
private String orderId;
@NotNull
private Long leaseTermIndex;
@NotNull
private Long remainTerm;
@NotNull
private Long totalTerm;
@NotNull
private String rentalReturnState;
@NotNull
private Long rentalMoney;
@NotNull
private Long penaltyFeeMoney;
@NotNull
private Long totalMoney;
private String returnTime;
private String returnWay;
private String returnVoucherSerial;
private String bankName;
public SyncFundOrderfulfillmentRequest(String productInstanceId) {
super("antchain.ato.fund.orderfulfillment.sync", "1.0", "Java-SDK-20240923", productInstanceId);
}
public SyncFundOrderfulfillmentRequest() {
super("antchain.ato.fund.orderfulfillment.sync", "1.0", null);
this.setSdkVersion("Java-SDK-20240923");
}
/**
* 商户id */
public String getMerchantTenantId() {
return this.merchantTenantId;
}
/**
* 商户id */
public void setMerchantTenantId(String merchantTenantId) {
this.merchantTenantId = merchantTenantId;
}
/**
* 订单id */
public String getOrderId() {
return this.orderId;
}
/**
* 订单id */
public void setOrderId(String orderId) {
this.orderId = orderId;
}
/**
* 租期编号 */
public Long getLeaseTermIndex() {
return this.leaseTermIndex;
}
/**
* 租期编号 */
public void setLeaseTermIndex(Long leaseTermIndex) {
this.leaseTermIndex = leaseTermIndex;
}
/**
* 剩余归还期数 */
public Long getRemainTerm() {
return this.remainTerm;
}
/**
* 剩余归还期数 */
public void setRemainTerm(Long remainTerm) {
this.remainTerm = remainTerm;
}
/**
* 总期数 */
public Long getTotalTerm() {
return this.totalTerm;
}
/**
* 总期数 */
public void setTotalTerm(Long totalTerm) {
this.totalTerm = totalTerm;
}
/**
* 租金归还状态,
* RETURN_FULL : 足额归还 【终态】
* NOT_RETURN : 未归还
* CANCEL : 取消 【终态】 */
public String getRentalReturnState() {
return this.rentalReturnState;
}
/**
* 租金归还状态,
* RETURN_FULL : 足额归还 【终态】
* NOT_RETURN : 未归还
* CANCEL : 取消 【终态】 */
public void setRentalReturnState(String rentalReturnState) {
this.rentalReturnState = rentalReturnState;
}
/**
* 租金归还金额,精确到分,即1234表示12.34元 */
public Long getRentalMoney() {
return this.rentalMoney;
}
/**
* 租金归还金额,精确到分,即1234表示12.34元 */
public void setRentalMoney(Long rentalMoney) {
this.rentalMoney = rentalMoney;
}
/**
* 罚息金额,分,1234表示12.34元 */
public Long getPenaltyFeeMoney() {
return this.penaltyFeeMoney;
}
/**
* 罚息金额,分,1234表示12.34元 */
public void setPenaltyFeeMoney(Long penaltyFeeMoney) {
this.penaltyFeeMoney = penaltyFeeMoney;
}
/**
* 总金额,单位分 */
public Long getTotalMoney() {
return this.totalMoney;
}
/**
* 总金额,单位分 */
public void setTotalMoney(Long totalMoney) {
this.totalMoney = totalMoney;
}
/**
* 归还时间,格式为"2019-07-31 12:00:00" */
public String getReturnTime() {
return this.returnTime;
}
/**
* 归还时间,格式为"2019-07-31 12:00:00" */
public void setReturnTime(String returnTime) {
this.returnTime = returnTime;
}
/**
* 归还方式,
* ANTDIGITAL: 数科代扣
* FUND : 资方代扣
* BANK : 银行转账
* WECHAT : 微信支付 */
public String getReturnWay() {
return this.returnWay;
}
/**
* 归还方式,
* ANTDIGITAL: 数科代扣
* FUND : 资方代扣
* BANK : 银行转账
* WECHAT : 微信支付 */
public void setReturnWay(String returnWay) {
this.returnWay = returnWay;
}
/**
* 还款凭证编号 */
public String getReturnVoucherSerial() {
return this.returnVoucherSerial;
}
/**
* 还款凭证编号 */
public void setReturnVoucherSerial(String returnVoucherSerial) {
this.returnVoucherSerial = returnVoucherSerial;
}
/**
* 银行名字 */
public String getBankName() {
return this.bankName;
}
/**
* 银行名字 */
public void setBankName(String bankName) {
this.bankName = bankName;
}
}