/****************************************** * 模块名称:实体 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 { /// /// 实体 WIP_SNResult /// [Description("Primary:ID")] [Serializable] [SugarTable("WIP_SNResult")] public class WIP_SNResult { #region 构造函数 /// /// 实体 WIP_SNResult /// 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 公共属性 /// /// 主键 ID /// [SugarColumn(IsPrimaryKey = true)] public string ID { set{ _id=value;} get{return _id;} } /// /// CREATE_TIME /// public DateTime CREATE_TIME { set{ _create_time=value;} get{return _create_time;} } /// /// CREATE_USER /// public string CREATE_USER { set{ _create_user=value;} get{return _create_user;} } /// /// UPDATE_TIME /// public DateTime UPDATE_TIME { set{ _update_time=value;} get{return _update_time;} } /// /// UPDATE_USER /// public string UPDATE_USER { set{ _update_user=value;} get{return _update_user;} } /// /// SN /// public string SN { set{ _sn=value;} get{return _sn;} } /// /// Status /// public string Status { set{ _status=value;} get{return _status;} } /// /// CurrOper /// public string CurrOper { set{ _curroper=value;} get{return _curroper;} } /// /// SeqNo /// public string SeqNo { set{ _seqno=value;} get{return _seqno;} } /// /// Remark /// public string Remark { set{ _remark=value;} get{return _remark;} } /// /// SN_ID /// public string SN_ID { set { _sn_id = value; } get { return _sn_id; } } /// /// Station /// public string Station { set { _Station = value; } get { return _Station; } } /// /// RetestTimes /// 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 } /// /// WIP_SNResult实体集 /// [Serializable] public class WIP_SNResultS : CollectionBase { #region 构造函数 /// /// WIP_SNResult实体集 /// public WIP_SNResultS(){} #endregion #region 属性方法 /// /// WIP_SNResult集合 增加方法 /// public void Add(WIP_SNResult entity) { this.List.Add(entity); } /// /// WIP_SNResult集合 索引 /// public WIP_SNResult this[int index] { get { return (WIP_SNResult)this.List[index]; } set { this.List[index] = value; } } #endregion } }