AuthorizeCamera.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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 2023-07-07
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_authorize_camera")
  22. public class AuthorizeCamera implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. /**
  25. * 本地算法授权
  26. */
  27. @TableId(value = "id", type = IdType.AUTO)
  28. private Integer id;
  29. /**
  30. * 客户名称
  31. */
  32. @TableField("customer_name")
  33. private String customerName;
  34. /**
  35. * 客户类别0直销,1经销
  36. */
  37. @TableField("customer_type")
  38. private Integer customerType;
  39. /**
  40. * 终端客户
  41. */
  42. @TableField("end_customer")
  43. private String endCustomer;
  44. /**
  45. * 使用类型
  46. */
  47. @TableField("use_type")
  48. private Integer useType;
  49. /**
  50. * 项目号
  51. */
  52. @TableField("project_num")
  53. private String projectNum;
  54. /**
  55. * 备注
  56. */
  57. @TableField("remark")
  58. private String remark;
  59. /**
  60. * 机器码
  61. */
  62. @TableField("machine_code")
  63. private String machineCode;
  64. /**
  65. * 机器UUID
  66. */
  67. @TableField("machine_uuid")
  68. private String machineUuid;
  69. /**
  70. * 设备名称
  71. */
  72. @TableField("machine_name")
  73. private String machineName;
  74. /**
  75. * 相机snCodes
  76. */
  77. @TableField("sn_codes")
  78. private String snCodes;
  79. /**
  80. * 相机数量
  81. */
  82. @TableField("camera_num")
  83. private Integer cameraNum;
  84. /**
  85. * 授权key
  86. */
  87. @TableField("authorize_key")
  88. private String authorizeKey;
  89. /**
  90. * 创建人
  91. */
  92. @TableField("sys_user_id")
  93. private Long sysUserId;
  94. @TableField(exist = false)
  95. private String sysUserName;
  96. @TableField("rec_status")
  97. @TableLogic(value = "A",delval = "I")
  98. private String recStatus;
  99. @TableField("create_time")
  100. private Date createTime;
  101. @TableField("update_time")
  102. private Date updateTime;
  103. }