1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package org.jeecg.modules.ai.vo;
|
| import lombok.Data;
|
| /**
| * @author clown
| * * @date 2024/8/7
| */
| @Data
| public class FilePdfSelectVo {
| private String pdfContent;
| private String pdfName;
| private String pdfPath;
| private String pdfFileId;
| }
|
|