初始化
This commit is contained in:
37
MySQLAccess/PGModels/DeviceStatus.cs
Normal file
37
MySQLAccess/PGModels/DeviceStatus.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MySQLAccess.PGModels;
|
||||
|
||||
public partial class DeviceStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键ID
|
||||
/// </summary>
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备ID
|
||||
/// </summary>
|
||||
public long? DeviceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备端点地址
|
||||
/// </summary>
|
||||
public string? EndPoint { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备状态
|
||||
/// </summary>
|
||||
public string? Status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
public DateTime? UpdateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间(Unix时间戳)
|
||||
/// </summary>
|
||||
public long? UpdateTimeUnix { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user