ClientStatus.cs
484 Bytes
using FreeSql.DataAnnotations;
namespace HHECS.DAQHandle.Models
{
[Table(Name = "daq_client_status")]
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; }
}
}