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

com.alipay.api.domain.KoubeiCateringDishMaterialQueryModel Maven / Gradle / Ivy

package com.alipay.api.domain;

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

/**
 * 口碑菜品库加料查询接口
 *
 * @author auto create
 * @since 1.0, 2020-11-23 11:24:15
 */
public class KoubeiCateringDishMaterialQueryModel extends AlipayObject {

	private static final long serialVersionUID = 8726863366451185621L;

	/**
	 * 口碑内部加料id,若不为空,则为单条查询,page_size和page_no失效;如果为空,则为批量查询,page_size和page_no必传,否则为默认值
	 */
	@ApiField("material_id")
	private String materialId;

	/**
	 * 要查询的加料库的商户id
	 */
	@ApiField("merchant_id")
	private String merchantId;

	/**
	 * isv的外部加料id,和口碑内部加料id二选一,都不为空时以内部加料id为优先;若不为空,则为单条查询,page_size和page_no失效;如果都为空,则为批量查询,page_size和page_no必传,否则为默认值
	 */
	@ApiField("out_material_id")
	private String outMaterialId;

	/**
	 * 查询页码,表示第几页;兼顾老版本,批量查询不传时默认为1
	 */
	@ApiField("page_no")
	private String pageNo;

	/**
	 * 分页大小,表示每页查询数量,不超过200;兼容老版本,批量查询不传时默认为200
	 */
	@ApiField("page_size")
	private String pageSize;

	public String getMaterialId() {
		return this.materialId;
	}
	public void setMaterialId(String materialId) {
		this.materialId = materialId;
	}

	public String getMerchantId() {
		return this.merchantId;
	}
	public void setMerchantId(String merchantId) {
		this.merchantId = merchantId;
	}

	public String getOutMaterialId() {
		return this.outMaterialId;
	}
	public void setOutMaterialId(String outMaterialId) {
		this.outMaterialId = outMaterialId;
	}

	public String getPageNo() {
		return this.pageNo;
	}
	public void setPageNo(String pageNo) {
		this.pageNo = pageNo;
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy