SceneFileBuild.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package com.fdkankan.tools.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.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import lombok.Getter;
  10. import lombok.Setter;
  11. /**
  12. * <p>
  13. * 场景文件建模表
  14. * </p>
  15. *
  16. * @author
  17. * @since 2023-02-08
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_scene_file_build")
  22. public class SceneFileBuild implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "Id", type = IdType.AUTO)
  25. private Integer id;
  26. /**
  27. * 相机的Mac地址
  28. */
  29. @TableField("child_name")
  30. private String childName;
  31. /**
  32. * 文件id
  33. */
  34. @TableField("file_id")
  35. private String fileId;
  36. /**
  37. * unicode
  38. */
  39. @TableField("unicode")
  40. private String unicode;
  41. /**
  42. * 状态,0-上传中,1-上传成功,-1-上传失败
  43. */
  44. @TableField("upload_status")
  45. private Integer uploadStatus;
  46. /**
  47. * 状态,0-未建模,1-请求建模,2-等待建模(队列中),3-建模成功,-1-建模失败
  48. */
  49. @TableField("build_status")
  50. private Integer buildStatus;
  51. /**
  52. * 照片总张数
  53. */
  54. @TableField("total_pic_num")
  55. private Integer totalPicNum;
  56. @TableField("chunks")
  57. private Integer chunks;
  58. /**
  59. * 创建时间
  60. */
  61. @TableField("create_time")
  62. private Date createTime;
  63. /**
  64. * 记录的状态,A: 生效,I: 禁用
  65. */
  66. @TableField("rec_status")
  67. @TableLogic(value = "A",delval = "I")
  68. private String recStatus;
  69. /**
  70. * 更新时间
  71. */
  72. @TableField("update_time")
  73. private Date updateTime;
  74. }