using System;
using SqlSugar;
using System.Linq;
using System.ComponentModel;
using System.Collections.Generic;
using Tiger.Model;
namespace Tiger.Model.Minsun
{
///
/// 实体:T_ToolInfo
///
[Description("Primary:Id")]
[Serializable]
[SugarTable("T_ToolInfo")]
public class T_ToolInfo : iDBEntity
{
#region 构造函数
///
/// 实体:T_ToolInfo
///
public T_ToolInfo() {}
#endregion
#region 公共属性
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true)]
public int Id { get; set; }
///
///
///
public string ToolCode { get; set; }
///
///
///
public string ToolModel { get; set; }
///
///
///
public string ToolSpec { get; set; }
///
///
///
public string ToolType { get; set; }
///
///
///
public string Manufacturer { get; set; }
///
///
///
public string ProductsCode { get; set; }
///
///
///
public int UseLimit { get; set; }
///
///
///
public int MaintainAlarmTime { get; set; }
///
///
///
public int ScrapAlarmTime { get; set; }
///
///
///
public int Total { get; set; }
///
///
///
public int UseCount { get; set; }
///
///
///
public string WhCode { get; set; }
///
///
///
public string WlCode { get; set; }
///
///
///
public string LineCode { get; set; }
///
///
///
public string Status { get; set; }
///
///
///
public string Remarks { get; set; }
///
///
///
public string Eattribute1 { get; set; }
///
///
///
public string Eattribute2 { get; set; }
///
///
///
public DateTime LastModificationTime { get; set; } = DateTime.MinValue;
///
///
///
public long LastModifierUserId { get; set; }
///
///
///
public DateTime CreationTime { get; set; } = DateTime.MinValue;
///
///
///
public long CreatorUserId { get; set; }
#endregion
#region 虚拟属性
/*例子
[SugarColumn(IsIgnore = true)]
public string FieldName { get; set; }
*/
#endregion
#region 枚举变量
/*例子
public enum FieldNames
{
[Description("枚举描述0")]
Enum0,
[Description("枚举描述1")]
Enum1,
}
*/
#endregion
#region 公共方法
#endregion
}//endClass
}