AudioDTO.java 3.25 KB
package com.cnlive.shenhe.dto;

import java.io.Serializable;

/**
 * @author Administrator
 * @author yanzhaowang
 * @create 2022-03-17 13:43
 */
public class AudioDTO implements Serializable {

    private String video_title;
    private String start_date;
    private String end_date;
    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;

    public AudioDTO() {
    }

    public AudioDTO(String video_title, String start_date, String end_date, Integer state, Integer receive, String video_priority, String orderByClause) {
        this.video_title = video_title;
        this.start_date = start_date;
        this.end_date = end_date;
        this.state = state;
        this.receive = receive;
        this.video_priority = video_priority;
        this.orderByClause = orderByClause;
    }

    public AudioDTO(String video_title, String start_date, String end_date, Integer state, Integer receive, Integer page, Integer pageSize, String video_priority, String orderByClause, String sp_desc, String sp_Id) {
        this.video_title = video_title;
        this.start_date = start_date;
        this.end_date = end_date;
        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;
    }


    public String getVideo_title() {
        return video_title;
    }

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

    public String getStart_date() {
        return start_date;
    }

    public void setStart_date(String start_date) {
        this.start_date = start_date;
    }

    public String getEnd_date() {
        return end_date;
    }

    public void setEnd_date(String end_date) {
        this.end_date = end_date;
    }

    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;
    }
}