rk
7 小时以前 580f4d3c2ca9eee53eee95a4de2f6610b790780a
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
package com.doumee.dao.web.request;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import com.doumee.dao.business.model.Multifile;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.apache.xpath.operations.Mult;
 
import java.util.List;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/3/23 9:50
 */
@Data
@ApiModel("评论发布请求类")
public class CommentApplyRequest {
 
    @ApiModelProperty(value = "对象编码(关联activity表)", example = "1")
    private Integer activityId;
 
    @ApiModelProperty(value = "内容")
    private String content;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "回复记录编码(关联comment表)", example = "1")
    private Integer replyId;
 
    @ApiModelProperty(value = "一级评论编码(关联comment表)", example = "1")
    private Integer commentId;
 
    @ApiModelProperty(value = "回复对象用户编码(关联member表", example = "1")
    private Integer replyMemberId;
 
    @ApiModelProperty(value = "图片信息", example = "1")
    private List<Multifile> multifileList;
 
}