
com.alipay.api.response.AlipayFinancialnetAuthEcsignSolutionBatchqueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.SolutionOpenVO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.financialnet.auth.ecsign.solution.batchquery response.
*
* @author auto create
* @since 1.0, 2023-08-21 05:21:44
*/
public class AlipayFinancialnetAuthEcsignSolutionBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 5713142996937869432L;
/**
* 页,默认1,必须要大于0。
*/
@ApiField("page_no")
private Long pageNo;
/**
* 页面大小,默认10。
*/
@ApiField("page_size")
private Long pageSize;
/**
* 解决方案列表
*/
@ApiListField("solution_list")
@ApiField("solution_open_v_o")
private List solutionList;
/**
* 列表记录总数
*/
@ApiField("total_count")
private Long totalCount;
public void setPageNo(Long pageNo) {
this.pageNo = pageNo;
}
public Long getPageNo( ) {
return this.pageNo;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getPageSize( ) {
return this.pageSize;
}
public void setSolutionList(List solutionList) {
this.solutionList = solutionList;
}
public List getSolutionList( ) {
return this.solutionList;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getTotalCount( ) {
return this.totalCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy