| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package me.zhengjie.archives.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author <a href="https://www.fengwenyi.com?code">Erwin Feng</a>
- * @since 2023-06-28
- */
- @Getter
- @Setter
- @TableName("gz_file_temp")
- public class GzFileTempEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * id
- */
- @TableId(value = "id", type = IdType.ASSIGN_ID)
- private String id;
- /**
- * 文件名字
- */
- @TableField("file_name")
- private String fileName;
- /**
- * 文件路径
- */
- @TableField("file_path")
- private String filePath;
- /**
- * 序号
- */
- @TableField("soft")
- private Integer soft;
- /**
- * 档案id
- */
- @TableField("pid")
- private String pid;
- /**
- * 是否删除
- */
- @TableField("is_delete")
- private String isDelete;
- @TableField("createtime")
- private LocalDateTime createtime;
- }
|