ClientStatus.cs
584 Bytes
using FreeSql.DataAnnotations;
namespace HHECS.DAQServer.Models
{
[Table(Name = "daq_client_status", DisableSyncStructure = true)]
[Index($"uk_{nameof(ClientKeys)}", $"{nameof(ClientKeys)}", true)]
public class ClientStatus
{
[Column(IsPrimary = true)]
public int Id { get; set; }
/// <summary>
/// 客户端Id
/// </summary>
public Guid ClientKeys { get; set; }
public string ClientName { get; set; }
public DateTime LastSeenDate { get; set; }
public string Remark { get; set; }
}
}