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