服务端的TigerApi 框架,基于.NET6 2024 版本
YangYuGang
2 天以前 6b821f97b2a82c199113d68054b3e3c93f3443aa
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
using System;
using SqlSugar;
using System.Linq;
using System.ComponentModel;
using System.Collections.Generic;
 
namespace Tiger.Model
{
    /// <summary>
    /// 实体:系统参数
    /// </summary>
    [Description("Primary:ID")]
    [Serializable]
    [SugarTable("V_SYS_PARAM")]
    public class V_SYS_PARAM : DbEntityNoGhost, iViewEntity
    {
        #region 构造函数
        /// <summary>
        /// 实体:系统参数
        /// </summary>
        public V_SYS_PARAM() { }
        #endregion
 
        #region 公共属性
        /// <summary>
        /// 参数代码
        /// </summary>
        public string PARAM_CODE { get; set; }
        /// <summary>
        /// 参数名称
        /// </summary>
        public string PARAM_NAME { get; set; }
        /// <summary>
        /// 参数描述
        /// </summary>
        public string PARAM_DESC { get; set; }
        /// <summary>
        /// 参数排序
        /// </summary>
        public int PARAM_SEQ { get; set; }
        /// <summary>
        /// 参数组代码
        /// </summary>
        public string PRMG_CODE { get; set; }
        /// <summary>
        /// 参数组类型
        /// </summary>
        public string PRMG_TYPE { get; set; }
        /// <summary>
        /// 参数值
        /// </summary>
        public string PARAM_VALUE { get; set; }
        /// <summary>
        /// 参数数据1
        /// </summary>
        public string DATA_1 { get; set; }
        /// <summary>
        /// 参数数据2
        /// </summary>
        public string DATA_2 { get; set; }
        /// <summary>
        /// 参数数据3
        /// </summary>
        public string DATA_3 { get; set; }
        /// <summary>
        /// 参数数据4
        /// </summary>
        public string DATA_4 { get; set; }
        /// <summary>
        /// 参数数据5
        /// </summary>
        public string DATA_5 { get; set; }
        #endregion
 
        #region 公共静态只读属性
        /// <summary>
        /// 表名 表原信息描述: V_SYS_PARAM
        /// </summary>
        public static readonly string s_TableName = "V_SYS_PARAM";
        /// <summary>
        /// 信息描述: ID
        /// </summary>
        public static readonly string s_ID = "V_SYS_PARAM┋ID┋System.String";
        /// <summary>
        /// 信息描述: PARAM_CODE
        /// </summary>
        public static readonly string s_PARAM_CODE = "V_SYS_PARAM┋PARAM_CODE┋System.String";
        /// <summary>
        /// 信息描述: PARAM_NAME
        /// </summary>
        public static readonly string s_PARAM_NAME = "V_SYS_PARAM┋PARAM_NAME┋System.String";
        /// <summary>
        /// 信息描述: PARAM_DESC
        /// </summary>
        public static readonly string s_PARAM_DESC = "V_SYS_PARAM┋PARAM_DESC┋System.String";
        /// <summary>
        /// 信息描述: PRMG_CODE
        /// </summary>
        public static readonly string s_PRMG_CODE = "V_SYS_PARAM┋PRMG_CODE┋System.String";
        /// <summary>
        /// 信息描述: PRMG_TYPE
        /// </summary>
        public static readonly string s_PRMG_TYPE = "V_SYS_PARAM┋PRMG_TYPE┋System.String";
        /// <summary>
        /// 信息描述: PARAM_VALUE
        /// </summary>
        public static readonly string s_PARAM_VALUE = "V_SYS_PARAM┋PARAM_VALUE┋System.String";
        /// <summary>
        /// 信息描述: DATA_1
        /// </summary>
        public static readonly string s_DATA_1 = "V_SYS_PARAM┋DATA_1┋System.String";
        /// <summary>
        /// 信息描述: DATA_2
        /// </summary>
        public static readonly string s_DATA_2 = "V_SYS_PARAM┋DATA_2┋System.String";
        /// <summary>
        /// 信息描述: DATA_3
        /// </summary>
        public static readonly string s_DATA_3 = "V_SYS_PARAM┋DATA_3┋System.String";
        /// <summary>
        /// 信息描述: DATA_4
        /// </summary>
        public static readonly string s_DATA_4 = "V_SYS_PARAM┋DATA_4┋System.String";
        /// <summary>
        /// 信息描述: DATA_5
        /// </summary>
        public static readonly string s_DATA_5 = "V_SYS_PARAM┋DATA_5┋System.String";
        /// <summary>
        /// 信息描述: CREATE_USER
        /// </summary>
        public static readonly string s_CREATE_USER = "V_SYS_PARAM┋CREATE_USER┋System.String";
        /// <summary>
        /// 信息描述: CREATE_TIME
        /// </summary>
        public static readonly string s_CREATE_TIME = "V_SYS_PARAM┋CREATE_TIME┋System.DateTime";
        /// <summary>
        /// 信息描述: UPDATE_USER
        /// </summary>
        public static readonly string s_UPDATE_USER = "V_SYS_PARAM┋UPDATE_USER┋System.String";
        /// <summary>
        /// 信息描述: UPDATE_TIME
        /// </summary>
        public static readonly string s_UPDATE_TIME = "V_SYS_PARAM┋UPDATE_TIME┋System.DateTime";
        /// <summary>
        /// 信息描述: PARAM_ORDER
        /// </summary>
        public static readonly string s_PARAM_ORDER = "V_SYS_PARAM┋PARAM_SEQ┋System.Int32";
        #endregion
 
        #region 公共方法
 
        #endregion
 
    }//endClass
}