ArticleParamsBean.java 944 Bytes
package com.wd.foundation.bean.custom;
import com.wd.foundation.bean.base.BaseBean;

public class ArticleParamsBean extends BaseBean {
    private String contentId;
    private String contentType;//内容类型
    private String relId;//关系id
    private String relType;//关系类型;1.频道关系;2.专题关系;

    public String getContentType() {
        return contentType;
    }

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

    public String getContentId() {
        return contentId;
    }

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

    public String getRelId() {
        return relId;
    }

    public void setRelId(String relId) {
        this.relId = relId;
    }

    public String getRelType() {
        return relType;
    }

    public void setRelType(String relType) {
        this.relType = relType;
    }
}