管道基础大数据平台系统开发-【CS】-ExportMap
OK
13693261870
2024-09-27 566e0d21293a5fe6423fd7a16541bce00eeb2e38
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
using log4net.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices.ComTypes;
using System.Security.Cryptography;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
 
namespace DataLoader.Model
{
    /// <summary>
    /// 目录类
    /// </summary>
    public class SysDir
    {
        public SysDir() { }
 
        /// <summary>
        /// 主键ID
        /// </summary>
        public int id { set; get; }
 
        /// <summary>
        /// 父ID:0-根节点
        /// </summary>
        public int pid { set; get; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string name { set; get; }
 
        /// <summary>
        /// 扩展名
        /// </summary>
        public string exts { set; get; }
 
        /// <summary>
        /// 目录说明
        /// </summary>
        public string descr { set; get; }
 
        /// <summary>
        /// 层级:0-根节点
        /// </summary>
        public int level { set; get; }
 
        /// <summary>
        /// 排序号
        /// </summary>
        public int order_num { set; get; }
 
        /// <summary>
        /// 创建人ID
        /// </summary>
        public int create_user { set; get; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime create_time { set; get; }
 
        /// <summary>
        /// 创建人ID
        /// </summary>
        public int update_user { set; get; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime update_time { set; get; }
 
        /// <summary>
        /// 检查项
        /// </summary>
        public string checks { set; get; }
 
        /// <summary>
        /// 备注
        /// </summary>
        public string bak { set; get; }
 
        /// <summary>
        /// 编码
        /// </summary>
        public string code { set; get; }
 
        /// <summary>
        /// 完全名称
        /// </summary>
        public string fullName { set; get; }
    }
}