服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-10-27 6f3b05c06125b457d0c78e259f3befe4910881cf
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/******************************************
* 模块名称:实体 WIP_SNResult
* 当前版本:1.0
* 开发人员:Ben
* 生成时间:2021/12/14
* 版本历史:此代码由 VB/C#.Net实体代码生成工具(EntitysCodeGenerate 4.8) 自动生成。
******************************************/
using System;
using System.Collections;
using System.Collections.Specialized;
using System.ComponentModel;
using SqlSugar;
 
namespace Tiger.Model
{
    /// <summary>
    /// 实体 WIP_SNResult
    /// </summary>
    [Description("Primary:ID")]
    [Serializable]
[SugarTable("WIP_SNResult")]
    public class WIP_SNResult
    {
        #region 构造函数
        /// <summary>
        /// 实体 WIP_SNResult
        /// </summary>
        public WIP_SNResult(){}
        #endregion
 
        #region 私有变量
        private string _id = null;
        private string _sn_id = null;
        private DateTime _create_time = DateTime.Now;
        private string _create_user = null;
        private DateTime _update_time = DateTime.Now;
        private string _update_user = null;
        private string _sn = null;
        private string _status = null;
        private string _curroper = null;
        private string _seqno = null;
        private int _RetestTimes = -1;
        private string _remark = null;
        private string _Station = null;
        private string _InnerSN = null;
        private string _OuterSN = null;
        #endregion
 
        #region 公共属性
        /// <summary>
        /// 主键 ID
        /// </summary>
        [SugarColumn(IsPrimaryKey = true)]
        public string ID
        {
            set{ _id=value;}
            get{return _id;}
        }
        /// <summary>
        /// CREATE_TIME
        /// </summary>
        public DateTime CREATE_TIME
        {
            set{ _create_time=value;}
            get{return _create_time;}
        }
        /// <summary>
        /// CREATE_USER
        /// </summary>
        public string CREATE_USER
        {
            set{ _create_user=value;}
            get{return _create_user;}
        }
        /// <summary>
        /// UPDATE_TIME
        /// </summary>
        public DateTime UPDATE_TIME
        {
            set{ _update_time=value;}
            get{return _update_time;}
        }
        /// <summary>
        /// UPDATE_USER
        /// </summary>
        public string UPDATE_USER
        {
            set{ _update_user=value;}
            get{return _update_user;}
        }
        /// <summary>
        /// SN
        /// </summary>
        public string SN
        {
            set{ _sn=value;}
            get{return _sn;}
        }
        /// <summary>
        /// Status
        /// </summary>
        public string Status
        {
            set{ _status=value;}
            get{return _status;}
        }
        /// <summary>
        /// CurrOper
        /// </summary>
        public string CurrOper
        {
            set{ _curroper=value;}
            get{return _curroper;}
        }
        /// <summary>
        /// SeqNo
        /// </summary>
        public string SeqNo
        {
            set{ _seqno=value;}
            get{return _seqno;}
        }
        /// <summary>
        /// Remark
        /// </summary>
        public string Remark
        {
            set{ _remark=value;}
            get{return _remark;}
        }
        /// <summary>
        /// SN_ID
        /// </summary>
        public string SN_ID
        {
            set { _sn_id = value; }
            get { return _sn_id; }
        }
 
        /// <summary>
        /// Station
        /// </summary>
        public string Station
        {
            set { _Station = value; }
            get { return _Station; }
        }
 
        /// <summary>
        /// RetestTimes
        /// </summary>
        public int RetestTimes
        {
            set { _RetestTimes = value; }
            get { return _RetestTimes; }
        }
 
        public string InnerSN
        {
            set { _InnerSN = value; }
            get { return _InnerSN; }
        }
 
        public string OuterSN
        {
            set { _OuterSN = value; }
            get { return _OuterSN; }
        }
        #endregion
    }
 
    /// <summary>
    /// WIP_SNResult实体集
    /// </summary>
    [Serializable]
    public class WIP_SNResultS : CollectionBase
    {
        #region 构造函数
        /// <summary>
        /// WIP_SNResult实体集
        /// </summary>
        public WIP_SNResultS(){}
        #endregion
 
        #region 属性方法
        /// <summary>
        /// WIP_SNResult集合 增加方法
        /// </summary>
        public void Add(WIP_SNResult entity)
        {
            this.List.Add(entity);
        }
        /// <summary>
        /// WIP_SNResult集合 索引
        /// </summary>
        public WIP_SNResult this[int index]
        {
            get { return (WIP_SNResult)this.List[index]; }
            set { this.List[index] = value; }
        }
        #endregion
    }
}