GzFileTempEntity.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package me.zhengjie.archives.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import java.io.Serializable;
  7. import java.time.LocalDateTime;
  8. import lombok.Getter;
  9. import lombok.Setter;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author <a href="https://www.fengwenyi.com?code">Erwin Feng</a>
  16. * @since 2023-06-28
  17. */
  18. @Getter
  19. @Setter
  20. @TableName("gz_file_temp")
  21. public class GzFileTempEntity implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. /**
  24. * id
  25. */
  26. @TableId(value = "id", type = IdType.ASSIGN_ID)
  27. private String id;
  28. /**
  29. * 文件名字
  30. */
  31. @TableField("file_name")
  32. private String fileName;
  33. /**
  34. * 文件路径
  35. */
  36. @TableField("file_path")
  37. private String filePath;
  38. /**
  39. * 序号
  40. */
  41. @TableField("soft")
  42. private Integer soft;
  43. /**
  44. * 档案id
  45. */
  46. @TableField("pid")
  47. private String pid;
  48. /**
  49. * 是否删除
  50. */
  51. @TableField("is_delete")
  52. private String isDelete;
  53. @TableField("createtime")
  54. private LocalDateTime createtime;
  55. }