CommentOperationBean.java
790 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
package com.wd.foundation.bean.livedate;
/**
* 描述:评论操作的消息bean
*
* @author : lvjinhui
* @since: 2023/9/9
*/
public class CommentOperationBean {
/**
* 操作
*/
private int operationType;
/**
* 评论id
*/
private String commentId;
public CommentOperationBean(int operationType, String commentId) {
this.operationType = operationType;
this.commentId = commentId;
}
public int getOperationType() {
return operationType;
}
public void setOperationType(int operationType) {
this.operationType = operationType;
}
public String getCommentId() {
return commentId;
}
public void setCommentId(String commentId) {
this.commentId = commentId;
}
}