CommentsDTO.java
3.06 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package com.cnlive.shenhe.dto;
import java.io.Serializable;
/**
* @author Administrator
* @author yanzhaowang
* @create 2022-03-17 14:31
*/
public class CommentsDTO implements Serializable {
private String activity_id;
private String content;
private Integer is_hot;
private String start_date;
private String end_date;
private Integer state;
private Integer receive;
private Integer page = 1;
private Integer pageSize = 10;
private String orderByClause;
private Integer type;
private Integer comment_user_id;
public CommentsDTO() {
}
public CommentsDTO(String activity_id, String content, Integer is_hot, String start_date, String end_date, Integer state, Integer receive, Integer page, Integer pageSize, String orderByClause, Integer type, Integer comment_user_id) {
this.activity_id = activity_id;
this.content = content;
this.is_hot = is_hot;
this.start_date = start_date;
this.end_date = end_date;
this.state = state;
this.receive = receive;
this.page = page;
this.pageSize = pageSize;
this.orderByClause = orderByClause;
this.type = type;
this.comment_user_id = comment_user_id;
}
public String getActivity_id() {
return activity_id;
}
public void setActivity_id(String activity_id) {
this.activity_id = activity_id;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Integer getIs_hot() {
return is_hot;
}
public void setIs_hot(Integer is_hot) {
this.is_hot = is_hot;
}
public String getStart_date() {
return start_date;
}
public void setStart_date(String start_date) {
this.start_date = start_date;
}
public String getEnd_date() {
return end_date;
}
public void setEnd_date(String end_date) {
this.end_date = end_date;
}
public Integer getState() {
return state;
}
public void setState(Integer state) {
this.state = state;
}
public Integer getReceive() {
return receive;
}
public void setReceive(Integer receive) {
this.receive = receive;
}
public Integer getPage() {
return page;
}
public void setPage(Integer page) {
this.page = page;
}
public Integer getPageSize() {
return pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getOrderByClause() {
return orderByClause;
}
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public Integer getComment_user_id() {
return comment_user_id;
}
public void setComment_user_id(Integer comment_user_id) {
this.comment_user_id = comment_user_id;
}
}