123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- 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("operator")
- private String operator;
- /**
- * 使用状态
- */
- @TableField("status")
- private Integer status;
- /**
- * 0千寻板卡千寻账号,1千寻板卡移动账号,2北云板卡移动账号
- */
- @TableField("rtk_type")
- private Integer rtkType ;
- @TableField("rec_status")
- @TableLogic(value = "A",delval = "I")
- private String recStatus;
- @TableField("create_time")
- private Date createTime;
- @TableField("update_time")
- private Date updateTime;
- @TableField("create_user_id")
- private Long createUserId;
- @TableField(exist = false)
- private String createUserName;
- @TableField(exist = false)
- private String createNickName;
- @TableField("update_user_id")
- private Long updateUserId;
- @TableField(exist = false)
- private String updateUserName;
- }
|