1
yhj
2024-07-24 5e5d945e91568b973faa27d8ab0bcef99fc4a6c5
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
#region
 
using System;
using System.Collections.Generic;
 
#endregion
 
namespace CSFrameworkV5.Interfaces.InterfaceModels
{
    /// <summary>
    ///     我的查询配置信息:DataRow转换Object
    /// </summary>
    public class MyConfigData
    {
        public MyConfigData()
        {
            isid = 0;
            Name = "";
            AllFields = new List<FieldNameDef>();
            AllSelectedFields = new List<FieldNameDef>();
            UserID = "";
        }
 
        public MyConfigData(int isid, string name, DateTime createDate)
        {
            this.isid = isid;
            Name = name;
            CreateDate = createDate;
            AllFields = new List<FieldNameDef>();
            AllSelectedFields = new List<FieldNameDef>();
            UserID = "";
        }
 
        /// <summary>
        ///     所有可选字段
        /// </summary>
        public List<FieldNameDef> AllFields { get; set; }
 
        /// <summary>
        ///     已选字段
        /// </summary>
        public List<FieldNameDef> AllSelectedFields { get; set; }
 
        /// <summary>
        ///     业务名称,如销售单、生产单
        /// </summary>
        public string BusinessName { get; set; }
 
        /// <summary>
        ///     创建日期
        /// </summary>
        public DateTime CreateDate { get; set; }
 
        /// <summary>
        ///     记录编号
        /// </summary>
        public int isid { get; set; }
 
        /// <summary>
        ///     配置名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        ///     配置的SQL脚本
        /// </summary>
        public string SQL { get; set; }
 
        /// <summary>
        ///     用户编号
        /// </summary>
        public string UserID { get; set; }
    }
}