初始化
This commit is contained in:
37
MySQLAccess/PGModels/DeviceAlertDatum.cs
Normal file
37
MySQLAccess/PGModels/DeviceAlertDatum.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MySQLAccess.PGModels;
|
||||
|
||||
public partial class DeviceAlertDatum
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键ID
|
||||
/// </summary>
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 告警数据值(二进制格式)
|
||||
/// </summary>
|
||||
public byte[]? Value { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public DateTime? CreateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 客户端ID,关联deviceinfo表
|
||||
/// </summary>
|
||||
public long? ClientId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备端点地址
|
||||
/// </summary>
|
||||
public string? EndPoint { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备真实地址
|
||||
/// </summary>
|
||||
public string? RealAddress { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user