zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
package org.jeecg.modules.project.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.jeecgframework.poi.excel.annotation.Excel;
 
@Data
@TableName("pro_template")
public class ProTemplate  extends JeecgEntity {
    @Excel(name = "模板名称", width = 15)
    private String name;
    @Excel(name = "文件类型", width = 15)
    private String fileType;
    @Excel(name = "模板状态", width = 15)
    private Integer statu;
    @Excel(name = "模板描述", width = 15)
    private String description;
    @Excel(name = "文件路径", width = 15)
    private String filePath;
    @Excel(name = "文件名称", width = 15)
    private String fileName;
 
 
}