package com.usky.ems.domain; 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.time.LocalDateTime; /** * 网关(leo.ems_gateway) */ @Data @EqualsAndHashCode(callSuper = false) @TableName("ems_gateway") public class EmsGateway implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.INPUT) private String id; @TableField("project_id") private Long projectId; private String name; @TableField("space_id") private Long spaceId; private String version; private String type; private String ip; private Integer port; @TableField("comm_status") private Integer commStatus; @TableField("online_time") private LocalDateTime onlineTime; @TableField("offline_time") private LocalDateTime offlineTime; @TableField("update_config_time") private LocalDateTime updateConfigTime; @TableField("update_protocol_time") private LocalDateTime updateProtocolTime; @TableField("upgrade_time") private LocalDateTime upgradeTime; @TableField("data_center_id") private Long dataCenterId; private String iccid; private Integer rssi; @TableField("secret_key") private String secretKey; @TableField("virtual_device") private Integer virtualDevice; private String remark; @TableField("updated_by") private Long updatedBy; @TableField("update_time") private LocalDateTime updateTime; @TableField("created_by") private Long createdBy; @TableField("create_time") private LocalDateTime createTime; }