VideosDTO.java 4.41 KB
package com.cnlive.shenhe.dto;

import java.io.Serializable;

/**
 * @author Administrator
 * @author yanzhaowang
 * @create 2022-03-17 16:35
 */
public class VideosDTO implements Serializable {

    private String video_title;
    private Integer state;
    private Integer receive;
    private Integer page = 1;
    private Integer pageSize = 10;
    private String video_priority;
    private String orderByClause;
    private String sp_desc;
    private String sp_Id;
    private String source;
    private String video_user_id;
    private String shen_auditor_id;
    private Integer contentId;
    private String video_id;
    private String sDate;
    private String eDate;
    private Integer spid;
    private String userId;

    public VideosDTO() {
    }

    public VideosDTO(String video_title, Integer state, Integer receive, Integer page, Integer pageSize, String video_priority, String orderByClause, String sp_desc, String sp_Id, String source, String video_user_id, String shen_auditor_id, Integer contentId, String video_id, String sDate, String eDate, Integer spid, String userId) {
        this.video_title = video_title;
        this.state = state;
        this.receive = receive;
        this.page = page;
        this.pageSize = pageSize;
        this.video_priority = video_priority;
        this.orderByClause = orderByClause;
        this.sp_desc = sp_desc;
        this.sp_Id = sp_Id;
        this.source = source;
        this.video_user_id = video_user_id;
        this.shen_auditor_id = shen_auditor_id;
        this.contentId = contentId;
        this.video_id = video_id;
        this.sDate = sDate;
        this.eDate = eDate;
        this.spid = spid;
        this.userId = userId;
    }

    public String getVideo_title() {
        return video_title;
    }

    public void setVideo_title(String video_title) {
        this.video_title = video_title;
    }

    public String getsDate() {
        return sDate;
    }

    public void setsDate(String sDate) {
        this.sDate = sDate;
    }

    public String geteDate() {
        return eDate;
    }

    public void seteDate(String eDate) {
        this.eDate = eDate;
    }

    public Integer getState() {
        return state;
    }

    public void setState(Integer state) {
        this.state = state;
    }

    public Integer getReceive() {
        return receive;
    }

    public void setReceive(Integer receive) {
        this.receive = receive;
    }

    public Integer getPage() {
        return page;
    }

    public void setPage(Integer page) {
        this.page = page;
    }

    public Integer getPageSize() {
        return pageSize;
    }

    public void setPageSize(Integer pageSize) {
        this.pageSize = pageSize;
    }

    public String getVideo_priority() {
        return video_priority;
    }

    public void setVideo_priority(String video_priority) {
        this.video_priority = video_priority;
    }

    public String getOrderByClause() {
        return orderByClause;
    }

    public void setOrderByClause(String orderByClause) {
        this.orderByClause = orderByClause;
    }

    public String getSp_desc() {
        return sp_desc;
    }

    public void setSp_desc(String sp_desc) {
        this.sp_desc = sp_desc;
    }

    public String getSp_Id() {
        return sp_Id;
    }

    public void setSp_Id(String sp_Id) {
        this.sp_Id = sp_Id;
    }

    public String getSource() {
        return source;
    }

    public void setSource(String source) {
        this.source = source;
    }

    public String getVideo_user_id() {
        return video_user_id;
    }

    public void setVideo_user_id(String video_user_id) {
        this.video_user_id = video_user_id;
    }

    public String getShen_auditor_id() {
        return shen_auditor_id;
    }

    public void setShen_auditor_id(String shen_auditor_id) {
        this.shen_auditor_id = shen_auditor_id;
    }

    public Integer getContentId() {
        return contentId;
    }

    public void setContentId(Integer contentId) {
        this.contentId = contentId;
    }

    public String getVideo_id() {
        return video_id;
    }

    public void setVideo_id(String video_id) {
        this.video_id = video_id;
    }

    public Integer getSpid() {
        return spid;
    }

    public void setSpid(Integer spid) {
        this.spid = spid;
    }

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }
}