[测评系统]--测评系统核心代码库
林致杰
2022-06-26 99f7f9adac08f3a3fa3211f7a6062c26d62fa224
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
package com.ots.project.exam.domain;
import com.ots.framework.aspectj.lang.annotation.Excel;
import com.ots.framework.web.domain.BaseEntity;
import lombok.Getter;
import lombok.Setter;
import org.springframework.web.multipart.MultipartFile;
 
@Setter
@Getter
public class TReportTemplate extends BaseEntity {
    private static final long serialVersionUID = 1L;
    
    private Long id;
    
    @Excel(name = "报告类型")
    private String reportType;
    
    @Excel(name = "模板类型")
    private String templateType;
    
    @Excel(name = "模板语言")
    private String langType;
    
    @Excel(name = "模板地址")
    private String location;
 
    private MultipartFile locationFile;
 
    /**
     * 数据地址
     */
    private String dataPath;
}