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

com.alipay.api.domain.AlipayMerchantQipanCrowdBatchqueryModel 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.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 商家人群查询
 *
 * @author auto create
 * @since 1.0, 2024-11-18 16:44:00
 */
public class AlipayMerchantQipanCrowdBatchqueryModel extends AlipayObject {

	private static final long serialVersionUID = 2463893436798711628L;

	/**
	 * 人群名称
最大长度为15个字符
	 */
	@ApiField("crowd_name")
	private String crowdName;

	/**
	 * 页码,本参数为空或小于1默认显示第一页;
	 */
	@ApiField("page_number")
	private String pageNumber;

	/**
	 * 每页大小。本参数为空或小于1默认20条;超过20条默认按20条查询;不足20条则按实际记录数返回
	 */
	@ApiField("page_size")
	private String pageSize;

	public String getCrowdName() {
		return this.crowdName;
	}
	public void setCrowdName(String crowdName) {
		this.crowdName = crowdName;
	}

	public String getPageNumber() {
		return this.pageNumber;
	}
	public void setPageNumber(String pageNumber) {
		this.pageNumber = pageNumber;
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy