/******************************************
|
* 模块名称:实体 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
|
}
|
}
|