RtkInfo.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. package com.fdkankan.manage.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 2024-04-26
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_rtk_info")
  22. public class RtkInfo implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Integer id;
  26. /**
  27. * ip地址
  28. */
  29. @TableField("ip_addr")
  30. private String ipAddr;
  31. /**
  32. * 挂载点
  33. */
  34. @TableField("mount_point")
  35. private String mountPoint;
  36. /**
  37. * 端口
  38. */
  39. @TableField("port")
  40. private String port;
  41. /**
  42. * 用户名称
  43. */
  44. @TableField("user_name")
  45. private String userName;
  46. /**
  47. * 密码
  48. */
  49. @TableField("password")
  50. private String password;
  51. /**
  52. * 板卡sn
  53. */
  54. @TableField("rtk_sn_code")
  55. private String rtkSnCode;
  56. /**
  57. * 运营商
  58. */
  59. @TableField("operator")
  60. private String operator;
  61. /**
  62. * 使用状态
  63. */
  64. @TableField("status")
  65. private Integer status;
  66. /**
  67. * 0千寻板卡千寻账号,1千寻板卡移动账号,2北云板卡移动账号
  68. */
  69. @TableField("rtk_type")
  70. private Integer rtkType ;
  71. @TableField("rec_status")
  72. @TableLogic(value = "A",delval = "I")
  73. private String recStatus;
  74. @TableField("create_time")
  75. private Date createTime;
  76. @TableField("update_time")
  77. private Date updateTime;
  78. @TableField("create_user_id")
  79. private Long createUserId;
  80. @TableField(exist = false)
  81. private String createUserName;
  82. @TableField(exist = false)
  83. private String createNickName;
  84. @TableField("update_user_id")
  85. private Long updateUserId;
  86. @TableField(exist = false)
  87. private String updateUserName;
  88. }