|
@@ -0,0 +1,84 @@
|
|
|
+package com.fdkankan.manage.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-04-26
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@TableName("t_rtk_info")
|
|
|
+public class RtkInfo implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ip地址
|
|
|
+ */
|
|
|
+ @TableField("ip_addr")
|
|
|
+ private String ipAddr;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 挂载点
|
|
|
+ */
|
|
|
+ @TableField("mount_point")
|
|
|
+ private String mountPoint;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 端口
|
|
|
+ */
|
|
|
+ @TableField("port")
|
|
|
+ private String port;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户名称
|
|
|
+ */
|
|
|
+ @TableField("user_name")
|
|
|
+ private String userName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 密码
|
|
|
+ */
|
|
|
+ @TableField("password")
|
|
|
+ private String password;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 板卡sn
|
|
|
+ */
|
|
|
+ @TableField("rtk_sn_code")
|
|
|
+ private String rtkSnCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 使用状态
|
|
|
+ */
|
|
|
+ @TableField("status")
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ @TableField("rec_status")
|
|
|
+ @TableLogic(value = "A",delval = "I")
|
|
|
+ private String recStatus;
|
|
|
+
|
|
|
+ @TableField("create_time")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ @TableField("update_time")
|
|
|
+ private Date updateTime;
|
|
|
+
|
|
|
+
|
|
|
+}
|