王飞
2025-01-23 2de56e472a41b7feb90be29a54a2d6f5a6c8762e
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
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("floor")
    private String floor;
 
    @ApiModelProperty(value = "围栏类型,考勤区域,危险区域")
    @TableField("type")
    private String type;
 
    @ApiModelProperty(value = "关联部门")
    @TableField("bumen")
    private String bumen;
 
    @ApiModelProperty(value = "围栏名称")
    @TableField("name")
    private String name;
 
    @ApiModelProperty(value = "围栏坐标")
    @TableField("zuobiao")
    private String zuobiao;
 
    @ApiModelProperty(value = "围栏形状,多边形或长方形")
    @TableField("shape")
    private String shape;
 
    @ApiModelProperty(value = "围栏生效开始时间")
    @TableField("start")
    private Date start;
 
    @ApiModelProperty(value = "围栏生效结束时间")
    @TableField("stop")
    private Date stop;
 
    @ApiModelProperty(value = "添加围栏时间")
    @TableField("addtime")
    private String addtime;
 
    @ApiModelProperty(value = "围栏颜色")
    @TableField("color")
    private String color;
 
    @ApiModelProperty(value = "围栏高度")
    @TableField("baoliu1")
    private String baoliu1;
 
    @ApiModelProperty(value = "围栏限制的人数")
    @TableField("baoliu2")
    private String baoliu2;
 
    @TableField("baoliu3")
    private String baoliu3;
 
    @TableField("baoliu4")
    private String baoliu4;
 
    @TableField("baoliu5")
    private String baoliu5;
 
    @ApiModelProperty(value = "变电站模式初始海拔高度")
    @TableField("baoliu6")
    private String baoliu6;
 
    @ApiModelProperty(value = "围栏是否启用1启用0未启用")
    @TableField("baoliu7")
    private String baoliu7;
 
    @ApiModelProperty(value = "围栏度格式坐标")
    @TableField("baoliu8")
    private String baoliu8;
 
    @TableField("baoliu9")
    private String baoliu9;
 
    @TableField("baoliu10")
    private String baoliu10;
 
    @TableField("baoliu11")
    private String baoliu11;
 
    @TableField("baoliu12")
    private String baoliu12;
 
    @TableField("baoliu13")
    private String baoliu13;
 
    @TableField("baoliu14")
    private String baoliu14;
 
    @TableField("baoliu15")
    private String baoliu15;
 
    @TableField("baoliu16")
    private String baoliu16;
 
    @TableField("baoliu17")
    private String baoliu17;
 
    @TableField("baoliu18")
    private String baoliu18;
 
    @TableField("baoliu19")
    private String baoliu19;
 
    @TableField("baoliu20")
    private String baoliu20;
 
//
    @TableField("companyid")
    private String companyid;
 
    @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;
 
}