InteractDataBean.java
784 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
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;
}
}