com.alipay.api.domain.TableListResult 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 桌名桌号返回结果类,桌号,桌名为成员
*
* @author auto create
* @since 1.0, 2017-06-26 14:14:11
*/
public class TableListResult extends AlipayObject {
private static final long serialVersionUID = 7892322934331319745L;
/**
* 桌名
*/
@ApiField("table_name")
private String tableName;
/**
* 桌号
*/
@ApiField("table_num")
private String tableNum;
public String getTableName() {
return this.tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
public String getTableNum() {
return this.tableNum;
}
public void setTableNum(String tableNum) {
this.tableNum = tableNum;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy