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 multifileList; }