SceneDataDownload.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.fdkankan.scene.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * <p>
  9. * 安居客场景数据下载
  10. * </p>
  11. *
  12. * @author
  13. * @since 2022-01-20
  14. */
  15. @Getter
  16. @Setter
  17. @TableName("t_scene_data_download")
  18. public class SceneDataDownload implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. @TableId(value = "id", type = IdType.AUTO)
  21. private Long id;
  22. /**
  23. * 场景码
  24. */
  25. @TableField("scene_num")
  26. private String sceneNum;
  27. /**
  28. * 文件md5
  29. */
  30. @TableField("file_md5")
  31. private String fileMd5;
  32. /**
  33. * 文件下载地址
  34. */
  35. @TableField("download_path")
  36. private String downloadPath;
  37. /**
  38. * 创建时间
  39. */
  40. @TableField("create_time")
  41. private Date createTime;
  42. /**
  43. * 更新时间
  44. */
  45. @TableField("update_time")
  46. private Date updateTime;
  47. /**
  48. * 记录的状态,A: 生效,I: 禁用
  49. */
  50. @TableField("rec_status")
  51. @TableLogic(value = "A", delval = "I")
  52. private String recStatus;
  53. }