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