12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.fjhx.entity;
- import com.baomidou.mybatisplus.annotation.FieldFill;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.fjhx.base.BaseEntity;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- /**
- * <p>
- * 文件
- * </p>
- *
- * @author ${author}
- * @since 2022-07-07
- */
- @Data
- @EqualsAndHashCode(callSuper = true)
- public class FileInfo extends BaseEntity {
- /**
- * 文件名称
- */
- private String fileName;
- /**
- * 文件后缀
- */
- private String fileSuffix;
- /**
- * 文件类型
- */
- private Integer fileType;
- /**
- * 文件大小
- */
- private Long fileSize;
- /**
- * 业务id
- */
- private Long businessId;
- /**
- * 业务类型
- */
- private Integer businessType;
- /**
- * 逻辑删除 0未删除 1已删除
- */
- @TableField(fill = FieldFill.INSERT)
- @TableLogic
- private Integer delFlag;
- }
|