123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- package com.fdkankan.tools.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- * 场景文件建模表
- * </p>
- *
- * @author
- * @since 2023-02-08
- */
- @Getter
- @Setter
- @TableName("t_scene_file_build")
- public class SceneFileBuild implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "Id", type = IdType.AUTO)
- private Integer id;
- /**
- * 相机的Mac地址
- */
- @TableField("child_name")
- private String childName;
- /**
- * 文件id
- */
- @TableField("file_id")
- private String fileId;
- /**
- * unicode
- */
- @TableField("unicode")
- private String unicode;
- /**
- * 状态,0-上传中,1-上传成功,-1-上传失败
- */
- @TableField("upload_status")
- private Integer uploadStatus;
- /**
- * 状态,0-未建模,1-请求建模,2-等待建模(队列中),3-建模成功,-1-建模失败
- */
- @TableField("build_status")
- private Integer buildStatus;
- /**
- * 照片总张数
- */
- @TableField("total_pic_num")
- private Integer totalPicNum;
- @TableField("chunks")
- private Integer chunks;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 记录的状态,A: 生效,I: 禁用
- */
- @TableField("rec_status")
- @TableLogic(value = "A",delval = "I")
- private String recStatus;
- /**
- * 更新时间
- */
- @TableField("update_time")
- private Date updateTime;
- }
|