liyong
8 天以前 56f0cc7293f0672ab5291a56ac9aea7b8fd0bf28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ruoyi.basic.dto;
 
import com.ruoyi.basic.pojo.StorageAttachment;
import lombok.Data;
 
import java.util.List;
 
@Data
public class StorageAttachmentVO extends StorageAttachment {
    /**
     * 存储文件列表
     */
    private List<StorageBlobVO> storageBlobVOS;
}