1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package cn.cslg.pas.domain;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableName;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * 报告文件导出表
- */
- @Data
- @Accessors(chain = true)
- @EqualsAndHashCode(callSuper = true)
- @TableName(value = "report_document")
- public class ReportDocument extends BaseEntity<ReportDocument> {
- /**
- * 报告ID
- */
- @Schema(description = "报告ID")
- @TableField(value = "project_id")
- private Integer projectId;
- /**
- * 文件名称
- */
- @Schema(description = "文件名称")
- @TableField(value = "file_name")
- private String fileName;
- /**
- * 导出人
- */
- @Schema(description = "导出人Id")
- @TableField(value = "create_id")
- private String createId;
- /**
- * 模板名称
- */
- @Schema(description = "模板名称")
- @TableField(value = "template_name")
- private String templateName;
- /**
- * 模板
- */
- @Schema(description = "模板")
- @TableField(value = "template_id")
- private Integer templateId;
- @Schema(description = "文件路径")
- @TableField(value = "file_guid")
- private String fileGuid;
- @Schema(description = "导出时间")
- @TableField(value = "create_time")
- private String createTime;
- }
|