fei.wang
2025-04-18 321a74059773cfecc01d6313f7c2e2d45545d6d3
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package com.hxzkappboot.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author wangfei
 * @since 2024-03-08
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("tb_warning")
@ApiModel(value="TbWarning对象", description="")
public class TbWarning implements Serializable {
 
    private static final long serialVersionUID=1L;
 
      @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "告警类型")
    @TableField("type")
    private String type;
 
    @ApiModelProperty(value = "设备ID")
    @TableField("objectid")
    private String objectid;
 
    @ApiModelProperty(value = "状态")
    @TableField("status")
    private String status;
 
    @ApiModelProperty(value = "添加时间")
    @TableField("time")
    private String time;
 
    @ApiModelProperty(value = "坐标")
    @TableField("baoliu1")
    private String baoliu1;
 
    @ApiModelProperty(value = "围栏名称")
    @TableField("baoliu2")
    private String baoliu2;
 
    @ApiModelProperty(value = "关联部门")
    @TableField("baoliu3")
    private String baoliu3;
 
    @ApiModelProperty(value = "人员名称")
    @TableField("baoliu4")
    private String baoliu4;
 
    @TableField("baoliu5")
    private String baoliu5;
 
    @TableField("baoliu6")
    private String baoliu6;
 
    @TableField("baoliu7")
    private String baoliu7;
 
    @TableField("baoliu8")
    private String baoliu8;
 
    @TableField("baoliu9")
    private String baoliu9;
 
    @TableField("baoliu10")
    private String baoliu10;
 
//    @ApiModelProperty(value = "公司")
//    @TableField("company")
//    private String company;
 
    @TableField(exist = false)
    private String pName;
 
    @TableField(exist = false)
    private String pX;
 
    @TableField(exist = false)
    private String pY;
 
    @TableField(exist = false)
    private String pFloor;
 
    @TableField(exist = false)
    private String lat;
 
    @TableField(exist = false)
    private String lng;
 
    @TableField(exist = false)
    private String gao;
 
    @TableField(exist = false)
    private List<Integer> ids;
 
//    @TableField(exist = false)
//    private String pName;
 
 
}