|
@@ -0,0 +1,105 @@
|
|
|
+package com.fdkankan.ucenter.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 2024-07-24
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@TableName("t_camera_version_app")
|
|
|
+public class CameraVersionApp implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 名称
|
|
|
+ */
|
|
|
+ @TableField("name")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 文件rul
|
|
|
+ */
|
|
|
+ @TableField("file_url")
|
|
|
+ private String fileUrl;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 文件MD5
|
|
|
+ */
|
|
|
+ @TableField("file_md5")
|
|
|
+ private String fileMd5;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 描述
|
|
|
+ */
|
|
|
+ @TableField("description")
|
|
|
+ private String description;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 相机版本
|
|
|
+ */
|
|
|
+ @TableField("version")
|
|
|
+ private String version;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 相机类型,1八目,2双目, 3转台双目, 4激光转台
|
|
|
+ */
|
|
|
+ @TableField("type")
|
|
|
+ private Integer type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 活动状态:A: 生效,I: 禁用
|
|
|
+ */
|
|
|
+ @TableField("status")
|
|
|
+ private String status;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录的状态,A: 生效,I: 禁用
|
|
|
+ */
|
|
|
+ @TableField("rec_status")
|
|
|
+ @TableLogic(value = "A",delval = "I")
|
|
|
+ private String recStatus;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建日期
|
|
|
+ */
|
|
|
+ @TableField("create_time")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改日期
|
|
|
+ */
|
|
|
+ @TableField("update_time")
|
|
|
+ private Date updateTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 相机版本(最小)
|
|
|
+ */
|
|
|
+ @TableField("min_version")
|
|
|
+ private String minVersion;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人
|
|
|
+ */
|
|
|
+ @TableField("sys_user_id")
|
|
|
+ private Integer sysUserId;
|
|
|
+
|
|
|
+
|
|
|
+}
|