SearchInfo.java 3.09 KB
package com.cnlive.goldenline.model;

import java.io.Serializable;
import java.util.List;

/**
 * Created by Administrator on 2016/4/14.
 */
public class SearchInfo implements Serializable {

    /**
     * keyword : 跳起来
     * errorCode : 0
     * void : [{"title":"华丽复古法国康康舞","corner":"","contid":"1","uv":"1365","extend1":"","extend":"","img":"http://y2.cnliveimg.com:8080/image/itv/2016/0316/1d24f0ef196a4c2987faac9c605f1d98_111893_101.jpg","subtitle":"华丽复古法国康康舞"},{"title":"每周大戏排行榜之二","corner":"","contid":"208","uv":"1365","extend1":"","extend":"","img":"http://y2.cnliveimg.com:8080/image/itv/2016/0519/2d2e08aa79474338828359bb0c662e62_123363_101.jpg","subtitle":"每周大戏排行榜之二"},{"title":"每周大戏排行榜第一期","corner":"","contid":"193","uv":"1365","extend1":"","extend":"","img":"http://y2.cnliveimg.com:8080/image/itv/2016/0516/a3cfb19a76de4e39b802f28f913a2880_122739_101.jpg","subtitle":"每周大戏排行榜第一期"},{"title":"我站在高岗上远处望","corner":"","contid":"46","uv":"1365","extend1":"","extend":"","img":"http://y1.cnliveimg.com:8080/image/itv/2016/0425/fb0b4dac457d4c1ca76d3355641300da_118978_101.jpg","subtitle":"我站在高岗上远处望"},{"title":"奇幻之旅即将启程","corner":"","contid":"156","uv":"1365","extend1":"","extend":"","img":"http://y3.cnliveimg.com:8080/image/itv/2016/0513/8126bae87c504d028afff8013eb50be3_118447_101.jpg","subtitle":"奇幻之旅即将启程"},{"title":"爆笑小品花絮抢先看","corner":"","contid":"160","uv":"1365","extend1":"","extend":"","img":"http://y2.cnliveimg.com:8080/image/itv/2016/0513/6af02c631d0b43178cff992b3e1b2664_120062_101.jpg","subtitle":"爆笑小品花絮抢先看"}]
     */
    private String keyword;
    private String errorCode;
    private String type;
    private String title;
    private List<String> historyList;
    private List<SearchItem> list;

    public SearchInfo(String type, String title, List<String> historyList) {
        this.type = type;
        this.title = title;
        this.historyList = historyList;
    }

    public SearchInfo(String type, List<SearchItem> list) {
        this.type = type;
        this.list = list;
    }

    public List<String> getHistoryList() {
        return historyList;
    }

    public void setHistoryList(List<String> historyList) {
        this.historyList = historyList;
    }


    public List<SearchItem> getList() {
        return list;
    }

    public void setList(List<SearchItem> list) {
        this.list = list;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getKeyword() {
        return keyword;
    }

    public void setKeyword(String keyword) {
        this.keyword = keyword;
    }

    public String getErrorCode() {
        return errorCode;
    }

    public void setErrorCode(String errorCode) {
        this.errorCode = errorCode;
    }


}