whycxzp
2021-04-16 5361481d1056f46d9df3c02a0bdb914c97e0db15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.sql.Date;
 
@ApiModel
@TableName(schema = "db_battinf",value = "tb_video")
public class Video extends Station {
 
    @ApiModelProperty("id")
    @TableId
    private Integer    id;
    @ApiModelProperty("站点id")
    private Integer    stationId;
 
    @ApiModelProperty("视频设备ip")
    private String    ip;
    @ApiModelProperty("视频设备名称-位置")
    private String    name;
    @ApiModelProperty("接入日期")
    private Date accessDate;
    @ApiModelProperty("状态:-1:报废,0-不显示,1-显示")
    private Integer    status;
 
    public Video() {
    }
 
    public Video(Integer id, Integer status) {
        this.id = id;
        this.status = status;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    @Override
    public Integer getStationId() {
        return stationId;
    }
 
    public void setStationId(Integer stationId) {
        this.stationId = stationId;
    }
 
    public String getIp() {
        return ip;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Date getAccessDate() {
        return accessDate;
    }
 
    public void setAccessDate(Date accessDate) {
        this.accessDate = accessDate;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
}