using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; using WIDESEAWCS_Core.Tenants; namespace WIDESEAWCS_Model.Models.SerialPort { [SugarTable("Dt_Tools", "工具信息表"), MultiTenant] public class Dt_Tools { [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int ID { get; set; } [SugarColumn(IsNullable = true, Length = 50)] public string ToolName { get; set; } [SugarColumn(IsNullable = true, Length = 50)] public float Specification { get; set; } [SugarColumn(IsNullable = true, Length = 50)] public string ToolUnit { get; set; } [SugarColumn(IsNullable = true, Length = 50)] public string Toolremark { get; set; } [SugarColumn(IsNullable = true)] public DateTime Createtime { get; set; } } }