1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package jnpf.tmsEntity.record;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| @Data
| public class TmsRecordAttachmentForm {
|
| @Schema(description = "主键")
| private String id;
|
| @Schema(description = "文件名")
| private String name;
|
| @Schema(description = "预览/下载地址")
| private String url;
| }
|
|