AudioPlaybackQuantityBean.java 818 Bytes
package com.wd.foundation.bean.response;

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

/**
 * @Author :张泽昊
 * @Email :1064771680@qq.com
 * @Date :$ $
 * @Description :
 */
public class AudioPlaybackQuantityBean  extends BaseBean {

    private String topicId;
    private String topicTitle;
    private String weightViews;

    public String getTopicId() {
        return topicId;
    }

    public void setTopicId(String topicId) {
        this.topicId = topicId;
    }

    public String getTopicTitle() {
        return topicTitle;
    }

    public void setTopicTitle(String topicTitle) {
        this.topicTitle = topicTitle;
    }

    public String getWeightViews() {
        return weightViews;
    }

    public void setWeightViews(String weightViews) {
        this.weightViews = weightViews;
    }
}