
com.alipay.api.domain.BoothContentInfoModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 展台对应的内容信息列表
*
* @author auto create
* @since 1.0, 2019-01-29 14:19:28
*/
public class BoothContentInfoModel extends AlipayObject {
private static final long serialVersionUID = 4521255112879896438L;
/**
* 展台名称
*/
@ApiField("booth")
private String booth;
/**
* 内容信息列表
*/
@ApiListField("content_info_list")
@ApiField("content_info_model")
private List contentInfoList;
public String getBooth() {
return this.booth;
}
public void setBooth(String booth) {
this.booth = booth;
}
public List getContentInfoList() {
return this.contentInfoList;
}
public void setContentInfoList(List contentInfoList) {
this.contentInfoList = contentInfoList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy