34 lines
710 B
Java
34 lines
710 B
Java
package com.qxcm.moduleutil.bean;
|
|
|
|
import com.stx.xhb.xbanner.entity.SimpleBannerInfo;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
public class BannerModel extends SimpleBannerInfo {
|
|
|
|
|
|
/**
|
|
* ad_id : 11
|
|
* type : 2
|
|
* title : 鱼糖语音·开服送好礼
|
|
* item_id : 9
|
|
* link_url : null
|
|
* content : https://gudao-prod.oss-cn-hangzhou.aliyuncs.com/user-dir/YZrsGTJR5F.jpg
|
|
* detail_pictures : null
|
|
*/
|
|
|
|
private String bid;
|
|
private String aid;
|
|
private String type;
|
|
private String show_type;
|
|
private String image;
|
|
private String url;
|
|
private ArrayList<String> detail_pictures;
|
|
|
|
|
|
@Override
|
|
public Object getXBannerUrl() {
|
|
return image;
|
|
}
|
|
}
|