|
@@ -0,0 +1,18 @@
|
|
|
+package com.sky.ioc.entity.domain.data;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class Template {
|
|
|
+
|
|
|
+ private Integer id;
|
|
|
+ private String name;//模版名称')
|
|
|
+ private String format;//模版格式')
|
|
|
+ private String report_type;//报告类型')
|
|
|
+ private String introduction;//模版简介')
|
|
|
+ private String creator;//创建者')
|
|
|
+ private String create_time;//创建时间')
|
|
|
+ private String update_time;//修改时间')
|
|
|
+ private String template;//模版文件名')
|
|
|
+ private String template_type;//模版类型')
|
|
|
+}
|