using System; using System.Collections.Generic; namespace MySQLAccess.PGModels; public partial class DeviceStatus { /// /// 主键ID /// public long Id { get; set; } /// /// 设备ID /// public long? DeviceId { get; set; } /// /// 设备端点地址 /// public string? EndPoint { get; set; } /// /// 设备状态 /// public string? Status { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 更新时间(Unix时间戳) /// public long? UpdateTimeUnix { get; set; } }