eleme.openapi.sdk.api.entity.finance.GenericCardBillsResponse Maven / Gradle / Ivy
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 GenericCardBillsResponse{
/**
* 账单总数
*/
private Integer totalCount;
public Integer getTotalCount() {
return totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
/**
* 通兑卡账单列表
*/
private List genericCardBills;
public List getGenericCardBills() {
return genericCardBills;
}
public void setGenericCardBills(List genericCardBills) {
this.genericCardBills = genericCardBills;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy