yanjinhui
2025-03-22 2f0c81709876d76b6b120cf6ac43f05cda6dfe4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
    {
 
            /// <summary>
            /// 主键
            /// </summary>
            [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
            public int ID { get; set; }
            
 
        /// <summary>
        /// 工具名
        /// </summary>
            [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "工具名称")]
            public string ToolName { get; set; }
 
 
        /// <summary>
        /// 工具规格
        /// </summary>
            [SugarColumn(IsNullable = true, ColumnDescription = "规格")]
            public string Specification { get; set; }
 
        /// <summary>
        /// 工具单位(个)
        /// </summary>
            [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "单位")]
            public string ToolUnit { get; set; }
 
 
        /// <summary>
        /// 备注
        /// </summary>
            [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "备注")]
            public string Toolremark { get; set; }
 
 
        }
}