Jay
2024-11-25 ee9f604388a3e77d3f4654e326f3976552e7f532
提交 | 用户 | 时间
149dd0 1 package com.iailab.module.data.video.entity;
H 2
3 import com.baomidou.mybatisplus.annotation.TableId;
4 import com.baomidou.mybatisplus.annotation.TableName;
5 import lombok.Data;
6 import lombok.EqualsAndHashCode;
7
8 import java.io.Serializable;
9 import java.util.Date;
10
11 @Data
12 @EqualsAndHashCode(callSuper = false)
13 @TableName("t_video_nvr")
14 public class NvrEntity implements Serializable {
15   private static final long serialVersionUID = 1L;
16
17   /**
18    * id
19    */
20   @TableId
21   private String id;
22
23   /**
24    * 编码
25    */
26   private String code;
27
28   /**
29    * 品牌
30    */
31   private Integer brand;
32
33   /**
34    * 名称
35    */
36   private String name;
37
38   /**
39    * IP
40    */
41   private String ip;
42
43   /**
44    * 端口
45    */
46   private Integer port;
47
48   /**
49    * 用户名
50    */
51   private String username;
52
53   /**
54    * 密码
55    */
56   private String password;
57
58   /**
59    * 设备类型
60    */
61   private String device;
62
63   /**
64    * 位置
65    */
66   private String position;
67
68   /**
69    * 状态
70    */
71   private Integer status;
72
73   /**
74    * 备注
75    */
76   private String remark;
77
78   /**
79    * 创建者
80    */
81   private Long creator;
82
83   /**
84    * 创建时间
85    */
86   private Date createDate;
87
88   /**
89    * 更新者
90    */
91   private Long updater;
92
93   /**
94    * 更新时间
95    */
96   private Date updateDate;
97
98 }