rentaiming
2024-06-03 42f795894094c4d9541381da31357d4bbf93fea0
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
package com.ruoyi.article.controller.forepart.dto;
 
import com.baomidou.mybatisplus.annotation.*;
import com.ruoyi.common.core.web.page.BasePage;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
@Data
public class ArticleCommentsDTO extends BasePage {
 
    @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;
 
}