111
fei.wang
2025-04-18 a6686570ac48648e2bf2ec93d27272a4473cac08
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package com.hxzkappboot.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import java.util.List;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author wangfei
 * @since 2024-03-08
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("tb_fence")
@ApiModel(value="TbFence对象", description="")
public class TbFence implements Serializable {
 
    private static final long serialVersionUID=1L;
 
    @ApiModelProperty(value = "序号")
      @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "围栏添加人员")
    @TableField("addperson")
    private String addperson;
 
    @ApiModelProperty(value = "围栏类型,考勤区域,危险区域")
    @TableField("type")
    private String type;
 
    @ApiModelProperty(value = "关联部门")
    @TableField("department")
    private String department;
 
    @ApiModelProperty(value = "围栏名称")
    @TableField("name")
    private String name;
 
    @ApiModelProperty(value = "围栏坐标")
    @TableField("points")
    private String points;
 
    @ApiModelProperty(value = "预警距离")
    @TableField("distance")
    private String distance;
 
    @ApiModelProperty(value = "围栏性质(输电,变电)")
    @TableField("fencetype")
    private String fencetype;
 
    @ApiModelProperty(value = "报警语音")
    @TableField("warnmes")
    private String warnmes;
 
    @ApiModelProperty(value = "添加围栏时间")
    @TableField("addtime")
    private String addtime;
 
    @ApiModelProperty(value = "预警语音")
    @TableField("nowarnmes")
    private String nowarnmes;
 
    @ApiModelProperty(value = "围栏高度")
    @TableField("height")
    private String height;
 
    @ApiModelProperty(value = "电压等级")
    @TableField("dianya")
    private String dianya;
 
    @TableField("baoliu3")
    private String baoliu3;
 
    @TableField("baoliu4")
    private String baoliu4;
 
    @TableField("baoliu1")
    private String baoliu1;
 
    @ApiModelProperty(value = "变电站模式初始海拔高度")
    @TableField("baoliu2")
    private String baoliu2;
 
    @ApiModelProperty(value = "围栏是否启用1启用0未启用")
    @TableField("isplay")
    private String isplay;
 
 
    @TableField(exist = false)
    private List<TbPerson> personList;
 
    @TableField(exist = false)
    private Date warntime;
 
    @TableField(exist = false)
    private String banjing;
 
    @TableField(exist = false)
    private String tagId;
 
 
    @TableField(exist = false)
    private List<String> list;
 
    @TableField(exist = false)
    private String fenceFloorHe;
 
    @TableField(exist = false)
    private String lineFloorHeight;
 
    @TableField(exist = false)
    private String lineHeight;
 
    @TableField(exist = false)
    private String company;
 
    @TableField(exist = false)
    private String perCompany;
 
 
 
 
 
}