com.alipay.api.response.KoubeiCateringTablelistQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.TableInfoResult;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.catering.tablelist.query response.
*
* @author auto create
* @since 1.0, 2017-06-26 14:14:12
*/
public class KoubeiCateringTablelistQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 7341672164957918479L;
/**
* 返回tablelistresult列表
*/
@ApiField("tableinfo_result")
private TableInfoResult tableinfoResult;
public void setTableinfoResult(TableInfoResult tableinfoResult) {
this.tableinfoResult = tableinfoResult;
}
public TableInfoResult getTableinfoResult( ) {
return this.tableinfoResult;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy