zhanghua
2024-01-09 4ef3b7b71b2b444f09e20bd440215e1677a602a4
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
package com.ycl.entity.equipment;
 
import com.alibaba.excel.annotation.ExcelProperty;
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 lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
/**
 * <p>
 * 卡口管理
 * </p>
 *
 * @author zhanghua
 * @since 2022-10-14
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("ums_equipment_bayonet")
public class EquipmentBayonet implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 卡口名称
     */
    @TableField("name")
    @ExcelProperty(index = 1, value = "卡口名称")
    private String name;
 
    /**
     * 卡口经度
     */
    @TableField("longitude")
    @ExcelProperty(index = 1, value = "卡口名称")
    private BigDecimal longitude;
 
    /**
     * 卡口纬度
     */
    @TableField("latitude")
    @ExcelProperty(index = 1, value = "卡口名称")
    private BigDecimal latitude;
 
    /**
     * ip地址
     */
    @TableField("ip_address")
    private String ipAddress;
 
    /**
     * 端口号
     */
    @TableField("port")
    private String port;
 
    /**
     * 描述
     */
    @TableField("description")
    private String description;
 
    /**
     * 前端类型
     */
    @TableField("front_end_type")
    private Integer frontEndType;
 
    /**
     * 出入城类型
     */
    @TableField("in_out_city_type")
    private Integer inOutCityType;
 
    /**
     * 所属区域
     */
    @TableField("belong_area")
    private String belongArea;
}