提交 | 用户 | 时间
ce910c 1 package com.iailab.module.data.dev.controller.admin.camera.vo;
H 2
3 import com.baomidou.mybatisplus.annotation.FieldFill;
4 import com.baomidou.mybatisplus.annotation.TableField;
5 import com.baomidou.mybatisplus.annotation.TableId;
6 import io.swagger.v3.oas.annotations.media.Schema;
7 import lombok.Data;
8
9 import java.util.Date;
10
11 /**
12  * @author PanZhibao
13  * @Description
14  * @createTime 2024年08月17日
15  */
16 @Schema(description = "硬盘录像机 Request VO")
17 @Data
18 public class DevCameraSaveReqVO {
19
20     /**
21      * id
22      */
23     @TableId
24     private String id;
25
26     /**
27      * 编码
28      */
29     private Integer code;
30
31     /**
32      * 厂部
33      */
34     private String factory;
35
36     /**
37      * 单元
38      */
39     private String unit;
40
41     /**
42      * 品牌
43      */
44     private String brand;
45
46     /**
47      * 监控点位
48      */
49     private String point;
50
51     /**
52      * 监控区域
53      */
54     private String location;
55
56     /**
57      * 录像机ID
58      */
59     private String nvrId;
60
61     /**
62      * IP
63      */
64     private String ip;
65
66     /**
67      * 端口
68      */
69     private String port;
70
71     /**
72      * 通道
73      */
74     private Integer channel;
75
76     /**
77      * 用户名
78      */
79     private String username;
80
81     /**
82      * 密码
83      */
84     private String password;
85
86     /**
87      * 状态
88      */
89     private Integer status;
90
91     /**
92      * 备注
93      */
94     private String remark;
95
96     /**
97      * 抓图方式
98      */
99     private String captureType;
100
101     /**
102      * 创建者
103      */
104     @TableField(fill = FieldFill.INSERT)
105     private Long creator;
106
107     /**
108      * 创建时间
109      */
110     @TableField(fill = FieldFill.INSERT)
111     private Date createDate;
112
113     /**
114      * 更新者
115      */
116     @TableField(fill = FieldFill.INSERT_UPDATE)
117     private Long updater;
118
119     /**
120      * 更新时间
121      */
122     @TableField(fill = FieldFill.INSERT_UPDATE)
123     private Date updateDate;
124
125 }