com.alipay.api.response.KoubeiCateringTablecodeQueryResponse 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.AlipayResponse;
/**
* ALIPAY API: koubei.catering.tablecode.query response.
*
* @author auto create
* @since 1.0, 2017-09-11 22:43:05
*/
public class KoubeiCateringTablecodeQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 1654298292118494555L;
/**
* 返回值为shop_code表示只返回了门店码 返回值为table_code表示返回了桌码跟门店码
*/
@ApiField("code_flag")
private String codeFlag;
/**
* 门店id
*/
@ApiField("shop_id")
private String shopId;
/**
* 桌码
*/
@ApiField("table_num")
private String tableNum;
public void setCodeFlag(String codeFlag) {
this.codeFlag = codeFlag;
}
public String getCodeFlag( ) {
return this.codeFlag;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
public String getShopId( ) {
return this.shopId;
}
public void setTableNum(String tableNum) {
this.tableNum = tableNum;
}
public String getTableNum( ) {
return this.tableNum;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy