ZhiBoDetailBean.java 11 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
package com.cnlive.goldenline.model.home;

import java.io.Serializable;

/**
 * Description:直播详情
 * Created on 2017/3/16
 * Author : 萧
 */
public class ZhiBoDetailBean implements Serializable {

    private int id;

    private String createTime;

    private String updateTime;

    private int enabled;

    private int columnId;

    private String columnName;

    private int mediaChannelId;

    private String title;

    private String subtitle;

    private String img;

    private int sort;

    private int status;

    private String beginTime;

    private String endTime;

    private String extend1;

    private String extend;

    private String mom;

    private String uv;

    private String appId;

    private String channelName;

    private String activityId;

    private String activityStatus;

    private String activityCategory;

    private String isHorizontalScreen;

    private String vId;

    private String extensions;

    private String showType;

    private String chatroomId;

    private String chatroomName;

    private String maxOnlineNum;

    private String appointmentNum;

    private String keywords;

    private int theatreId;

    private int price;

    private int discountPrice;

    private int recommendType;

    private int tag;

    public ZhiBoDetailBean() {
    }

    public ZhiBoDetailBean(int id, String createTime, String updateTime, int enabled, int columnId, String columnName, int mediaChannelId, String title, String subtitle, String img, int sort, int status, String beginTime, String endTime, String extend1, String extend, String mom, String uv, String appId, String channelName, String activityId, String activityStatus, String activityCategory, String isHorizontalScreen, String vId, String extensions, String showType, String chatroomId, String chatroomName, String maxOnlineNum, String appointmentNum, String keywords, int theatreId, int price, int discountPrice, int recommendType) {
        this.id = id;
        this.createTime = createTime;
        this.updateTime = updateTime;
        this.enabled = enabled;
        this.columnId = columnId;
        this.columnName = columnName;
        this.mediaChannelId = mediaChannelId;
        this.title = title;
        this.subtitle = subtitle;
        this.img = img;
        this.sort = sort;
        this.status = status;
        this.beginTime = beginTime;
        this.endTime = endTime;
        this.extend1 = extend1;
        this.extend = extend;
        this.mom = mom;
        this.uv = uv;
        this.appId = appId;
        this.channelName = channelName;
        this.activityId = activityId;
        this.activityStatus = activityStatus;
        this.activityCategory = activityCategory;
        this.isHorizontalScreen = isHorizontalScreen;
        this.vId = vId;
        this.extensions = extensions;
        this.showType = showType;
        this.chatroomId = chatroomId;
        this.chatroomName = chatroomName;
        this.maxOnlineNum = maxOnlineNum;
        this.appointmentNum = appointmentNum;
        this.keywords = keywords;
        this.theatreId = theatreId;
        this.price = price;
        this.discountPrice = discountPrice;
        this.recommendType = recommendType;
    }

    public int getTag() {
        return tag;
    }

    public void setTag(int tag) {
        this.tag = tag;
    }

    public String getvId() {
        return vId;
    }

    public void setvId(String vId) {
        this.vId = vId;
    }

    public void setId(int id) {
        this.id = id;
    }

    public int getId() {
        return this.id;
    }

    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }

    public String getCreateTime() {
        return this.createTime;
    }

    public void setUpdateTime(String updateTime) {
        this.updateTime = updateTime;
    }

    public String getUpdateTime() {
        return this.updateTime;
    }

    public void setEnabled(int enabled) {
        this.enabled = enabled;
    }

    public int getEnabled() {
        return this.enabled;
    }

    public void setColumnId(int columnId) {
        this.columnId = columnId;
    }

    public int getColumnId() {
        return this.columnId;
    }

    public void setColumnName(String columnName) {
        this.columnName = columnName;
    }

    public String getColumnName() {
        return this.columnName;
    }

    public void setMediaChannelId(int mediaChannelId) {
        this.mediaChannelId = mediaChannelId;
    }

    public int getMediaChannelId() {
        return this.mediaChannelId;
    }

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

    public String getTitle() {
        return this.title;
    }

    public void setSubtitle(String subtitle) {
        this.subtitle = subtitle;
    }

    public String getSubtitle() {
        return this.subtitle;
    }

    public void setImg(String img) {
        this.img = img;
    }

    public String getImg() {
        return this.img;
    }

    public void setSort(int sort) {
        this.sort = sort;
    }

    public int getSort() {
        return this.sort;
    }

    public void setStatus(int status) {
        this.status = status;
    }

    public int getStatus() {
        return this.status;
    }

    public void setBeginTime(String beginTime) {
        this.beginTime = beginTime;
    }

    public String getBeginTime() {
        return this.beginTime;
    }

    public void setEndTime(String endTime) {
        this.endTime = endTime;
    }

    public String getEndTime() {
        return this.endTime;
    }

    public void setExtend1(String extend1) {
        this.extend1 = extend1;
    }

    public String getExtend1() {
        return this.extend1;
    }

    public void setExtend(String extend) {
        this.extend = extend;
    }

    public String getExtend() {
        return this.extend;
    }

    public void setMom(String mom) {
        this.mom = mom;
    }

    public String getMom() {
        return this.mom;
    }

    public void setUv(String uv) {
        this.uv = uv;
    }

    public String getUv() {
        return this.uv;
    }

    public void setAppId(String appId) {
        this.appId = appId;
    }

    public String getAppId() {
        return this.appId;
    }

    public void setChannelName(String channelName) {
        this.channelName = channelName;
    }

    public String getChannelName() {
        return this.channelName;
    }

    public void setActivityId(String activityId) {
        this.activityId = activityId;
    }

    public String getActivityId() {
        return this.activityId;
    }

    public void setActivityStatus(String activityStatus) {
        this.activityStatus = activityStatus;
    }

    public String getActivityStatus() {
        return this.activityStatus;
    }

    public void setActivityCategory(String activityCategory) {
        this.activityCategory = activityCategory;
    }

    public String getActivityCategory() {
        return this.activityCategory;
    }

    public void setIsHorizontalScreen(String isHorizontalScreen) {
        this.isHorizontalScreen = isHorizontalScreen;
    }

    public String getIsHorizontalScreen() {
        return this.isHorizontalScreen;
    }

    public void setVId(String vId) {
        this.vId = vId;
    }

    public String getVId() {
        return this.vId;
    }

    public void setExtensions(String extensions) {
        this.extensions = extensions;
    }

    public String getExtensions() {
        return this.extensions;
    }

    public void setShowType(String showType) {
        this.showType = showType;
    }

    public String getShowType() {
        return this.showType;
    }

    public void setChatroomId(String chatroomId) {
        this.chatroomId = chatroomId;
    }

    public String getChatroomId() {
        return this.chatroomId;
    }

    public void setChatroomName(String chatroomName) {
        this.chatroomName = chatroomName;
    }

    public String getChatroomName() {
        return this.chatroomName;
    }

    public void setMaxOnlineNum(String maxOnlineNum) {
        this.maxOnlineNum = maxOnlineNum;
    }

    public String getMaxOnlineNum() {
        return this.maxOnlineNum;
    }

    public void setAppointmentNum(String appointmentNum) {
        this.appointmentNum = appointmentNum;
    }

    public String getAppointmentNum() {
        return this.appointmentNum;
    }

    public void setKeywords(String keywords) {
        this.keywords = keywords;
    }

    public String getKeywords() {
        return this.keywords;
    }

    public void setTheatreId(int theatreId) {
        this.theatreId = theatreId;
    }

    public int getTheatreId() {
        return this.theatreId;
    }

    public void setPrice(int price) {
        this.price = price;
    }

    public int getPrice() {
        return this.price;
    }

    public void setDiscountPrice(int discountPrice) {
        this.discountPrice = discountPrice;
    }

    public int getDiscountPrice() {
        return this.discountPrice;
    }

    public void setRecommendType(int recommendType) {
        this.recommendType = recommendType;
    }

    public int getRecommendType() {
        return this.recommendType;
    }

    @Override
    public String toString() {
        return "ZhiBoDetailBean{" +
                "id=" + id +
                ", createTime='" + createTime + '\'' +
                ", updateTime='" + updateTime + '\'' +
                ", enabled=" + enabled +
                ", columnId=" + columnId +
                ", columnName='" + columnName + '\'' +
                ", mediaChannelId=" + mediaChannelId +
                ", title='" + title + '\'' +
                ", subtitle='" + subtitle + '\'' +
                ", img='" + img + '\'' +
                ", sort=" + sort +
                ", status=" + status +
                ", beginTime='" + beginTime + '\'' +
                ", endTime='" + endTime + '\'' +
                ", extend1='" + extend1 + '\'' +
                ", extend='" + extend + '\'' +
                ", mom='" + mom + '\'' +
                ", uv='" + uv + '\'' +
                ", appId='" + appId + '\'' +
                ", channelName='" + channelName + '\'' +
                ", activityId='" + activityId + '\'' +
                ", activityStatus='" + activityStatus + '\'' +
                ", activityCategory='" + activityCategory + '\'' +
                ", isHorizontalScreen='" + isHorizontalScreen + '\'' +
                ", vId='" + vId + '\'' +
                ", extensions='" + extensions + '\'' +
                ", showType='" + showType + '\'' +
                ", chatroomId='" + chatroomId + '\'' +
                ", chatroomName='" + chatroomName + '\'' +
                ", maxOnlineNum='" + maxOnlineNum + '\'' +
                ", appointmentNum='" + appointmentNum + '\'' +
                ", keywords='" + keywords + '\'' +
                ", theatreId=" + theatreId +
                ", price=" + price +
                ", discountPrice=" + discountPrice +
                ", recommendType=" + recommendType +
                '}';
    }
}