1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ruoyi.business.dto;
|
| import com.ruoyi.basic.entity.StorageAttachment;
| import com.ruoyi.business.entity.Archive;
| import lombok.Data;
|
| import java.util.List;
|
| @Data
| public class ArchiveDto extends Archive {
|
| private Long treeId;
|
| private List<StorageAttachment> attachments;
| }
|
|