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

com.alipay.api.response.AlipayOfflineMarketProductBatchqueryResponse 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.AlipayResponse;

/**
 * ALIPAY API: alipay.offline.market.product.batchquery response.
 * 
 * @author auto create
 * @since 1.0, 2024-11-04 10:59:20
 */
public class AlipayOfflineMarketProductBatchqueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 7438923283973198443L;

	/** 
	 * 当前页码
	 */
	@ApiField("current_pageno")
	private Long currentPageno;

	/** 
	 * 商品列表ID,逗号分隔
	 */
	@ApiListField("item_ids")
	@ApiField("string")
	private List itemIds;

	/** 
	 * 总页码数
	 */
	@ApiField("total_pageno")
	private Long totalPageno;

	public void setCurrentPageno(Long currentPageno) {
		this.currentPageno = currentPageno;
	}
	public Long getCurrentPageno( ) {
		return this.currentPageno;
	}

	public void setItemIds(List itemIds) {
		this.itemIds = itemIds;
	}
	public List getItemIds( ) {
		return this.itemIds;
	}

	public void setTotalPageno(Long totalPageno) {
		this.totalPageno = totalPageno;
	}
	public Long getTotalPageno( ) {
		return this.totalPageno;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy