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;
|
}
|