/** * Copyright 2018 人人开源 https://www.renren.io *

* This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. *

* This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. *

* You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package com.epmet.excel; import cn.afterturn.easypoi.excel.annotation.Excel; import lombok.Data; import java.util.Date; /** * 项目节点附件表 * * @author generator generator@elink-cn.com * @since v1.0.0 2020-12-21 */ @Data public class ProjectProcessAttachmentExcel { @Excel(name = "唯一标识") private String id; @Excel(name = "客户ID") private String customerId; @Excel(name = "项目ID") private String projectId; @Excel(name = "项目进展表ID") private String processId; @Excel(name = "文件所属内容(内部备注: public 公开答复:internal)") private String filePlace; @Excel(name = "文件名") private String fileName; @Excel(name = "附件名(uuid随机生成)") private String attachmentName; @Excel(name = "文件大小") private Integer attachmentSize; @Excel(name = "文件格式(JPG、PNG、JPEG、BMP、GIF、PDF、PPT、PPTX、DOC、DOCX、XLS、XLSX、MP3、WMA、M4A、MP4、AVI、MOV、RMVB、RM、WMV)") private String attachmentFormat; @Excel(name = "文件类型((图片 - image、 视频 - video、 语音 - voice、 文档 - doc))") private String attachmentType; @Excel(name = "url地址") private String attachmentUrl; @Excel(name = "排序(需求确定,按上传顺序排序)") private Integer sort; @Excel(name = "语音或视频时长,秒") private Integer duration; @Excel(name = "是否强制发布(0:否 1:是)") private Integer isRelease; @Excel(name = "附件审核状态") private String status; @Excel(name = "附件审核结果描述") private String reason; @Excel(name = "删除标识:0.未删除 1.已删除") private String delFlag; @Excel(name = "乐观锁") private Integer revision; @Excel(name = "创建人") private String createdBy; @Excel(name = "创建时间") private Date createdTime; @Excel(name = "更新人") private String updatedBy; @Excel(name = "更新时间") private Date updatedTime; }