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

com.alipay.api.response.KoubeiCateringDishSpecgroupQueryResponse 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.KbdishSpecGroup;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: koubei.catering.dish.specgroup.query response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-04 19:36:26
 */
public class KoubeiCateringDishSpecgroupQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 4437696834597593595L;

	/** 
	 * 商户的在接入蚂蚁开放平台的user_id
	 */
	@ApiField("merchant_id")
	private String merchantId;

	/** 
	 * 规格标签信息
	 */
	@ApiListField("spec_group_list")
	@ApiField("kbdish_spec_group")
	private List specGroupList;

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

	public void setSpecGroupList(List specGroupList) {
		this.specGroupList = specGroupList;
	}
	public List getSpecGroupList( ) {
		return this.specGroupList;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy