1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| 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 BatchMoveFileDTO {
| @ApiModelProperty(value="文件集合", required = true)
| private String files;
| @ApiModelProperty(value="目的文件路径", required = true)
| private String filePath;
|
|
| }
|
|