CommentOperationBean.java 790 Bytes
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;
    }
}