AudioPlaybackQuantityBean.java
818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
}
}