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