ContentDTO.java 3.63 KB
package com.cnlive.shenhe.dto;

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

/**
 * @author Administrator
 * @author yanzhaowang
 * @create 2022-03-17 14:48
 */
public class ContentDTO implements Serializable {

    private String title;
    private String contentId;
    private String content_tag;
    private Integer receive_status;
    private String sp_desc;
    private String source;
    private String author;
    private Integer page = 1;
    private Integer pageSize = 10;
    private String orderByClause;
    private String sDate;
    private String eDate;
    private Integer spid;
    private String userId;
    private String updater;

    public ContentDTO() {
    }

    public String getTitle() {
        return title;
    }

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

    public String getContentId() {
        return contentId;
    }

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

    public String getContent_tag() {
        return content_tag;
    }

    public void setContent_tag(String content_tag) {
        this.content_tag = content_tag;
    }

    public Integer getReceive_status() {
        return receive_status;
    }

    public void setReceive_status(Integer receive_status) {
        this.receive_status = receive_status;
    }

    public String getSp_desc() {
        return sp_desc;
    }

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

    public String getSource() {
        return source;
    }

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

    public String getAuthor() {
        return author;
    }

    public void setAuthor(String author) {
        this.author = author;
    }

    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 getOrderByClause() {
        return orderByClause;
    }

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


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

    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 String getUpdater() {
        return updater;
    }

    public void setUpdater(String updater) {
        this.updater = updater;
    }

    public ContentDTO(String title, String contentId, String content_tag, Integer receive_status, String sp_desc, String source, String author, Integer page, Integer pageSize, String orderByClause, String sDate, String eDate, Integer spid, String userId, String updater) {
        this.title = title;
        this.contentId = contentId;
        this.content_tag = content_tag;
        this.receive_status = receive_status;
        this.sp_desc = sp_desc;
        this.source = source;
        this.author = author;
        this.page = page;
        this.pageSize = pageSize;
        this.orderByClause = orderByClause;
        this.sDate = sDate;
        this.eDate = eDate;
        this.spid = spid;
        this.userId = userId;
        this.updater = updater;
    }
}