daq_client_config.cs 2.03 KB
using Hh.Mes.POJO.Entity;
using SqlSugar;
using System;

namespace Hh.Mes.POJO.WebEntity.configure
{
    /// <summary>
    /// 客户端配置信息
    /// </summary>
    [SugarTable("daq_client_config")]
    public partial class daq_client_config : base_Entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public Guid id { get; set; }

        /// <summary>
        /// 客户端名称
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "客户端名称", IsNullable = true)]
        public string name { get; set; }

        /// <summary>
        /// 客户端类型
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "客户端类型", IsNullable = true)]
        public string type { get; set; }

        /// <summary>
        /// 项目编号
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "项目编号", IsNullable = true)]
        public string projectCode { get; set; }

        /// <summary>
        /// 仓库编号
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "仓库编号", IsNullable = true)]
        public string factoryCode { 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(ColumnDescription = "创建时间", IsNullable = true)]
        public DateTime created { get; set; }

        /// <summary>
        /// 创建人
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "创建人", IsNullable = true)]
        public string createdBy { get; set; }

    }
}