ustcyc
2025-01-07 de5d55508afd27fb2b47e6d4d6fd9984525c222c
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
package com.zhitan.gatewaysetting.domain;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.zhitan.common.annotation.Excel;
import com.zhitan.common.core.domain.BaseEntity;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 网关配置信息对象 gateway_setting
 *
 * @author ZhiTan
 * @date 2024-10-30
 */
@TableName("gateway_setting")
@Data
public class GatewaySetting extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /** UUID主键 */
    private String id;
 
    /** 网关编号 */
    @Excel(name = "网关编号")
    private String gatewayNum;
 
    /** 网关名称 */
    @Excel(name = "网关名称")
    private String gatewayName;
 
    /** 规格型号 */
    @Excel(name = "规格型号")
    private String specsModel;
 
    /** 安装位置 */
    @Excel(name = "安装位置")
    private String installLocation;
 
    /** ip地址 */
    @Excel(name = "ip地址")
    private String ipAdd;
 
    /** 运行状态:未知、离线、在线 */
    @Excel(name = "运行状态")
    private String runStatus;
 
    /** 心跳时间 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "心跳时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date hbtTime;
 
    /** 计量器具数量 */
    @Excel(name = "计量器具数量")
    private Integer deviceNum;
 
    /** 监测点数量 */
    @Excel(name = "采集点数量")
    private Integer ptNum;
 
}