yanjinhui
2025-03-12 0a430c14f3e3ceb4ba63462c4f2c92768fc79e87
ÏîÄ¿´úÂë/WIDESEAWCS_Server Õýʽ/WIDESEAWCS_Model/Models/SerialPort/Dt_Tools.cs
@@ -4,35 +4,32 @@
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
using WIDESEAWCS_Core.Tenants;
namespace WIDESEAWCS_Model.Models.SerialPort
namespace WIDESEAWCS_Model.Models
{
    [SugarTable("Dt_Tools", "工具信息表"), MultiTenant]
    public class Dt_Tools
    public class Dt_Tools : BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int ID { get; set; }
        [SugarColumn(IsNullable = true, Length = 50)]
        public string  ToolName { get; set; }
            [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
            public int ID { get; set; }
        [SugarColumn(IsNullable = true, Length = 50)]
            [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "工具名称")]
            public string ToolName { get; set; }
        public float Specification { 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; }
        [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; }
    }
        }
}