SceneDownloadLog.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package com.fdkankan.manage.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import java.io.Serializable;
  6. /**
  7. * <p>
  8. *
  9. * </p>
  10. *
  11. * @author
  12. * @since 2022-06-23
  13. */
  14. @Getter
  15. @Setter
  16. @TableName("t_scene_download_log")
  17. public class SceneDownloadLog implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. @TableId(value = "id", type = IdType.AUTO)
  20. private Long id;
  21. /**
  22. * 用户id
  23. */
  24. @TableField("user_id")
  25. private Long userId;
  26. /**
  27. * 场景码
  28. */
  29. @TableField("scene_num")
  30. private String sceneNum;
  31. /**
  32. * 场景版本
  33. */
  34. @TableField("scene_version")
  35. private Integer sceneVersion;
  36. /**
  37. * 场景打包之后的连接
  38. */
  39. @TableField("download_url")
  40. private String downloadUrl;
  41. /**
  42. * 0下载中,1下载成功,2下载失败
  43. */
  44. @TableField("status")
  45. private Integer status;
  46. /**
  47. * 下载版本v3,v4
  48. */
  49. @TableField("sys_version")
  50. private String sysVersion;
  51. @TableField("rec_status")
  52. @TableLogic(value = "A",delval = "I")
  53. private String recStatus;
  54. @TableField("create_time")
  55. private String createTime;
  56. @TableField("update_time")
  57. private String updateTime;
  58. }