1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.gkhy.exam.system.domain.vo;
|
| import com.gkhy.exam.system.domain.CatalogueDataFile;
| import lombok.Data;
|
| import java.util.Date;
| import java.util.List;
|
| @Data
| public class CatalogueDataVo {
|
|
| private String id;
| private Integer catalogueId;
| private Integer companyId;
| private String companyName;
| private String content;
| private String analysis;
| private Integer delFlag;
| private String createBy;
| private Date createTime;
| private String updateBy;
| private Date updateTime;
| private List<CatalogueDataFile> files;
| }
|
|