VW_CurrentUserDevice.cs 2.04 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    [SugarTable("VW_CurrentUserDevice")]
    public partial class VW_CurrentUserDevice : base_Entity
    {
        /// <summary>
        /// 用户账号
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "用户账号", IsNullable = false)]
        public string userAccount { get; set; }

        /// <summary>
        /// 客户keys
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "客户keys", IsNullable = false)]
        public Guid clientKeys { get; set; }

        /// <summary>
        /// 项目keys
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "项目keys", IsNullable = false)]
        public Guid projectKeys { get; set; }

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

        /// <summary>
        /// 项目名称
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "项目名称", IsNullable = false)]
        public string projectName { get; set; }

        /// <summary>
        /// 厂房名称
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "厂房名称", IsNullable = false)]
        public string factoryName { get; set; }

        /// <summary>
        /// 设备类型
        /// </summary>
        [SugarColumn(Length = 20, ColumnDescription = "设备类型", IsNullable = true)]
        public string equipmentTypeName { get; set; }

        /// <summary>
        /// 设备编码
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "设备编码", IsNullable = false)]
        public string equipmentCode { get; set; }

        /// <summary>
        /// 设备名称
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "设备名称", IsNullable = true)]
        public string equipmentName { get; set; }
        
    }
}