rentaiming
2024-05-27 a71ee1cbe7611b95485d0e951ef0030f1f2b7826
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
package com.ruoyi.article.dto;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
@Data
public class ArticleCommentsDTO {
 
    @ApiModelProperty(value = "资讯评论id")
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
 
    @ApiModelProperty(value = "资讯id")
    private Long articleId;
 
    @ApiModelProperty(value = "评论id")
    private Long replyId;
 
    @ApiModelProperty(value = "会员id")
    private Long memberId;
 
    @ApiModelProperty(value = "评论")
    private String content;
 
    @ApiModelProperty(value = "被评论会员id")
    private Long  bmemberId;
 
    @ApiModelProperty(value = "1 评论,2 是回复")
    private  Integer type;
 
}