唐召明
authored
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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; }
}
}
|