PLC
yanjinhui
2025-04-24 461ccbda1d9d3fef42f250771c2fd30702755c16
ÏîÄ¿´úÂë/WIDESEAWCS_Server Õýʽ/WIDESEAWCS_Model/Models/SerialPort/Dt_Tools.cs
@@ -4,35 +4,49 @@
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; }
            /// <summary>
            /// ä¸»é”®
            /// </summary>
            [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
            public int ID { get; set; }
        [SugarColumn(IsNullable = true, Length = 50)]
        public float Specification { get; set; }
        /// <summary>
        /// å·¥å…·å
        /// </summary>
            [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "工具名称")]
            public string ToolName { get; set; }
        [SugarColumn(IsNullable = true, Length = 50)]
        /// <summary>
        /// å·¥å…·è§„æ ¼
        /// </summary>
            [SugarColumn(IsNullable = true, ColumnDescription = "规格")]
            public string Specification { get; set; }
        public string  ToolUnit { get; set; }
        [SugarColumn(IsNullable = true, Length = 50)]
        public string Toolremark {  get; set; }
        /// <summary>
        /// å·¥å…·å•位(个)
        /// </summary>
            [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "单位")]
            public string ToolUnit { get; set; }
        [SugarColumn(IsNullable = true)]
        /// <summary>
        /// å¤‡æ³¨
        /// </summary>
            [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "备注")]
            public string Toolremark { get; set; }
        public DateTime Createtime { get; set; }
    }
        }
}