package com.welampiot.dto; import lombok.Data; import java.io.Serializable; import java.util.List; /** * ClassName: NoiseDevInfoDTO * Package: com.welampiot.dto * Description: * * @Author: zhj_Start * @Create: 2023/4/24 - 9:56 * @Version: v1.0 */ @Data public class NoiseDevInfoDTO implements Serializable { /** 主键 **/ private Integer id; /** 设备名称 **/ private String name; /** 设备地址 **/ private String address; /** 在线状态(0 离线,1 在线)**/ private Integer online; /** 灯杆id **/ private Integer lampPoleId; /** 噪声 **/ private Float noise; /** 数据更新时间 **/ private String updateTime; /** 白天告警值 **/ private Float warringValue1; /** 晚上告警值 **/ private Float warringValue2; /** 串口号(0 3号串口,1 2号串口,2 1号串口)**/ private Integer serialPort; /** 安装时间 **/ private String installDate; /** 过期时间 **/ private String expirationDate; /** 网关型号(0 G100,1 G200,2 G40,3 G300) **/ private Integer model; private String lampPoleName; private Integer timezone; private Integer status; private Integer page; private Integer count; private String keyword; private Integer sectionId; private String devType; private List sectionList; private static final long serialVersionUID = 1L; }