1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package org.jeecg.modules.doc.dto;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| @ApiModel(value = "删除文件DTO")
| public class DeleteFileDTO {
| @ApiModelProperty(value = "用户文件id", required = true)
| private String userFileId;
|
|
| }
|
|