SimpleContentBean.java 913 Bytes
package com.wd.foundation.bean.request;

import com.wd.foundation.bean.base.BaseBean;

/**
 * 描述:只有两个字段
 *
 * @author : lvjinhui
 * @since: 2023/11/16
 */
public class SimpleContentBean extends BaseBean {

    public SimpleContentBean(String contentId, int contentType) {
        this.contentId = contentId;
        this.contentType = contentType;
    }

    /**
     * 稿件ID
     */
    private String contentId;

    /**
     * 稿件类型  1-图文、5-图集、6-视频、10-直播(回放),7是专题,12 h5
     */
    private int contentType;


    public String getContentId() {
        return contentId;
    }

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

    public int getContentType() {
        return contentType;
    }

    public void setContentType(int contentType) {
        this.contentType = contentType;
    }

    
}