xuhy
2025-04-03 a940f08f0061d7eaa40944a20181eacec66ccdfb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.hollywood.applet.dto;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class ReportDto {
    @ApiModelProperty(value = "短视频id")
    private Long videoId;
 
    @ApiModelProperty(value = "举报理由")
    private String reportReason;
 
    @ApiModelProperty(value = "举报描述")
    private String reportDesc;
 
    @ApiModelProperty(value = "举报图片")
    private String reportPicture;
}