SystemNotice.java 5.33 KB
package com.bjivt.entity.showtime;

import java.io.Serializable;
import java.util.Date;

public class SystemNotice implements Serializable {
    /**
     * 
     * 表字段 : tbl_system_notice.id
     */
    private Integer id;

    /**
     * 标题
     * 表字段 : tbl_system_notice.title
     */
    private String title;

    /**
     * 内容
     * 表字段 : tbl_system_notice.content
     */
    private String content;

    /**
     * 间隔
     * 表字段 : tbl_system_notice.interval_time
     */
    private Integer intervalTime;

    /**
     * 操作类型:1:一次性;2:循环
     * 表字段 : tbl_system_notice.action
     */
    private Integer action;

    /**
     * 分类:1:主播;2:所有用户;3:除主播外的用户
     * 表字段 : tbl_system_notice.type
     */
    private Integer type;

    /**
     * 创建日期
     * 表字段 : tbl_system_notice.create_time
     */
    private Date createTime;

    /**
     * 操作人
     * 表字段 : tbl_system_notice.manager_id
     */
    private Integer managerId;
    /**
     * 是否已发布
     */
    private Boolean isPublish;

    private static final long serialVersionUID = 1L;

    /**
     * 获取:
     * 表字段:tbl_system_notice.id
     *
     * @return tbl_system_notice.id:
     */
    public Integer getId() {
        return id;
    }

    /**
     * 设置:
     * 表字段:tbl_system_notice.id
     *
     * @param id
     *            tbl_system_notice.id:
     */
    public void setId(Integer id) {
        this.id = id;
    }

    /**
     * 获取:标题
     * 表字段:tbl_system_notice.title
     *
     * @return tbl_system_notice.title:标题
     */
    public String getTitle() {
        return title;
    }

    /**
     * 设置:标题
     * 表字段:tbl_system_notice.title
     *
     * @param title
     *            tbl_system_notice.title:标题
     */
    public void setTitle(String title) {
        this.title = title == null ? null : title.trim();
    }

    /**
     * 获取:内容
     * 表字段:tbl_system_notice.content
     *
     * @return tbl_system_notice.content:内容
     */
    public String getContent() {
        return content;
    }

    /**
     * 设置:内容
     * 表字段:tbl_system_notice.content
     *
     * @param content
     *            tbl_system_notice.content:内容
     */
    public void setContent(String content) {
        this.content = content == null ? null : content.trim();
    }

    /**
     * 获取:间隔
     * 表字段:tbl_system_notice.interval_time
     *
     * @return tbl_system_notice.interval_time:间隔
     */
    public Integer getIntervalTime() {
        return intervalTime;
    }

    /**
     * 设置:间隔
     * 表字段:tbl_system_notice.interval_time
     *
     * @param intervalTime
     *            tbl_system_notice.interval_time:间隔
     */
    public void setIntervalTime(Integer intervalTime) {
        this.intervalTime = intervalTime;
    }

    /**
     * 获取:操作类型:1:一次性;2:循环
     * 表字段:tbl_system_notice.action
     *
     * @return tbl_system_notice.action:操作类型:1:一次性;2:循环
     */
    public Integer getAction() {
        return action;
    }

    /**
     * 设置:操作类型:1:一次性;2:循环
     * 表字段:tbl_system_notice.action
     *
     * @param action
     *            tbl_system_notice.action:操作类型:1:一次性;2:循环
     */
    public void setAction(Integer action) {
        this.action = action;
    }

    /**
     * 获取:分类:1:主播;2:所有用户;3:除主播外的用户
     * 表字段:tbl_system_notice.type
     *
     * @return tbl_system_notice.type:分类:1:主播;2:所有用户;3:除主播外的用户
     */
    public Integer getType() {
        return type;
    }

    /**
     * 设置:分类:1:主播;2:所有用户;3:除主播外的用户
     * 表字段:tbl_system_notice.type
     *
     * @param type
     *            tbl_system_notice.type:分类:1:主播;2:所有用户;3:除主播外的用户
     */
    public void setType(Integer type) {
        this.type = type;
    }

    /**
     * 获取:创建日期
     * 表字段:tbl_system_notice.create_time
     *
     * @return tbl_system_notice.create_time:创建日期
     */
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * 设置:创建日期
     * 表字段:tbl_system_notice.create_time
     *
     * @param createTime
     *            tbl_system_notice.create_time:创建日期
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * 获取:操作人
     * 表字段:tbl_system_notice.manager_id
     *
     * @return tbl_system_notice.manager_id:操作人
     */
    public Integer getManagerId() {
        return managerId;
    }

    /**
     * 设置:操作人
     * 表字段:tbl_system_notice.manager_id
     *
     * @param managerId
     *            tbl_system_notice.manager_id:操作人
     */
    public void setManagerId(Integer managerId) {
        this.managerId = managerId;
    }

    public Boolean getIsPublish() {
        return isPublish;
    }

    public void setIsPublish(Boolean isPublish) {
        this.isPublish = isPublish;
    }
}