daq_client_status.cs 1.39 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    /// <summary>
    /// 客户端状态
    /// </summary>
    [SugarTable("daq_client_status")]
    public partial class daq_client_status:base_Entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }
 
        /// <summary>
        /// 客户端Id
        /// </summary>
        [SugarColumn(ColumnDescription = "客户端Id", IsNullable = false)]
        public Guid clientKeys { get; set; }
 
        /// <summary>
        /// 客户端名称
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "客户端名称", IsNullable = true)]
        public string clientName { get; set; }
 
        /// <summary>
        /// 最后更新时间
        /// </summary>
        [SugarColumn(ColumnDescription = "最后更新时间", IsNullable = false)]
        public DateTime lastSeenDate { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "备注", IsNullable = true)]
        public string remark { get; set; }
 
        /// <summary>
        /// 项目编号
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "项目编号", IsNullable = true)]
        public string projectCode { get; set; }
 
     }
}