using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; using WIDESEAWCS_Core.DB.Models; using WIDESEAWCS_Core.Tenants; namespace WIDESEAWCS_Model.Models { [SugarTable("Dt_Tools", "工具信息表"), MultiTenant] public class Dt_Tools : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int ID { get; set; } /// /// 工具名 /// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "工具名称")] public string ToolName { get; set; } /// /// 工具规格 /// [SugarColumn(IsNullable = true, ColumnDescription = "规格")] public float Specification { get; set; } /// /// 工具单位(个) /// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "单位")] public string ToolUnit { get; set; } /// /// 备注 /// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "备注")] public string Toolremark { get; set; } } }