RecentFileVO.java
573 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.subsidy.vo.college;
import lombok.Data;
@Data
public class RecentFileVO {
private Long id;
private Long collegeId;
private Long matchId;
/**
* 汇总表
*/
private String summaryUrl;
private String summaryName;
private String pptUrl;
private String pptName;
/**
* 文字报告
*/
private String wordReportUrl;
private String wordReportName;
/**
* 支持材料
*/
private String supportFileUrl;
private String supportFileName;
private String updateDate;
}