All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.response.AlipayIserviceCcmSwTreecategoryBatchqueryResponse Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
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.ArticleCategoryInfo;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.iservice.ccm.sw.treecategory.batchquery response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-04 14:10:04
 */
public class AlipayIserviceCcmSwTreecategoryBatchqueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 4413881442338969726L;

	/** 
	 * 节点集合
	 */
	@ApiListField("categories")
	@ApiField("article_category_info")
	private List categories;

	/** 
	 * 页数
	 */
	@ApiField("page_num")
	private Long pageNum;

	/** 
	 * 页显示大小
	 */
	@ApiField("page_size")
	private Long pageSize;

	/** 
	 * 总行数
	 */
	@ApiField("total_count")
	private Long totalCount;

	public void setCategories(List categories) {
		this.categories = categories;
	}
	public List getCategories( ) {
		return this.categories;
	}

	public void setPageNum(Long pageNum) {
		this.pageNum = pageNum;
	}
	public Long getPageNum( ) {
		return this.pageNum;
	}

	public void setPageSize(Long pageSize) {
		this.pageSize = pageSize;
	}
	public Long getPageSize( ) {
		return this.pageSize;
	}

	public void setTotalCount(Long totalCount) {
		this.totalCount = totalCount;
	}
	public Long getTotalCount( ) {
		return this.totalCount;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy