InteractDataBean.java 784 Bytes
package com.wd.foundation.bean.request;

/**
 * Time:2023/5/19
 * Author:ypf
 * Description:新闻内容详情请求Bean
 */
public class InteractDataBean {

    private String contentId;
    private int contentType;

    public InteractDataBean(String contentId) {
        this.contentId = contentId;
    }

    public InteractDataBean(String contentId, int contentType) {
        this.contentId = contentId;
        this.contentType = 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;
    }
}