TheatreResponse.java 651 Bytes
package com.cnlive.goldenline.model.response;

import java.util.List;

/**
 * Created by luxiaoman 2017/4/11
 */
public class TheatreResponse<T> extends BaseResponse {

    List<T> data;

    public TheatreResponse() {
    }

    public TheatreResponse(int code, String errMsg, List<T> data) {
        super(code, errMsg);
        this.data = data;
    }

    public List<T> getData() {
        return data;
    }

    public void setData(List<T> data) {
        this.data = data;
    }

    @Override
    public String toString() {
        return "TheatreResponse{" +
                "data=" + data +
                "} " + super.toString();
    }
}