eleme.openapi.sdk.api.entity.finance.FundRelationsResponse Maven / Gradle / Ivy
The newest version!
package eleme.openapi.sdk.api.entity.finance;
import eleme.openapi.sdk.api.enumeration.finance.*;
import eleme.openapi.sdk.api.entity.finance.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class FundRelationsResponse{
/**
* 主资金账号接入方ID
*/
private Integer masterPartyId;
public Integer getMasterPartyId() {
return masterPartyId;
}
public void setMasterPartyId(Integer masterPartyId) {
this.masterPartyId = masterPartyId;
}
/**
* 主资金账号ID(默认:-10000)
*/
private Long masterCustomerId;
public Long getMasterCustomerId() {
return masterCustomerId;
}
public void setMasterCustomerId(Long masterCustomerId) {
this.masterCustomerId = masterCustomerId;
}
/**
* 子资金账号接入方ID
*/
private Integer partyId;
public Integer getPartyId() {
return partyId;
}
public void setPartyId(Integer partyId) {
this.partyId = partyId;
}
/**
* 子资金账号ID(默认:-10000)
*/
private Long customerId;
public Long getCustomerId() {
return customerId;
}
public void setCustomerId(Long customerId) {
this.customerId = customerId;
}
/**
* 发票状态
*/
private Byte invoiceStatus;
public Byte getInvoiceStatus() {
return invoiceStatus;
}
public void setInvoiceStatus(Byte invoiceStatus) {
this.invoiceStatus = invoiceStatus;
}
/**
* 业务方
*/
private Integer businessType;
public Integer getBusinessType() {
return businessType;
}
public void setBusinessType(Integer businessType) {
this.businessType = businessType;
}
/**
* 生效时间(数据库默认:1970-01-01 00:00:00)
*/
@JsonFormat(locale = "zh" , timezone="GMT+8")
private Date startAt;
public Date getStartAt() {
return startAt;
}
public void setStartAt(Date startAt) {
this.startAt = startAt;
}
/**
* 失效时间(数据库默认:2099-01-01 00:00:00)
*/
@JsonFormat(locale = "zh" , timezone="GMT+8")
private Date endAt;
public Date getEndAt() {
return endAt;
}
public void setEndAt(Date endAt) {
this.endAt = endAt;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy