You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
2.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.Entity
{
/// <summary>
/// 实体类LR_lot
/// </summary>
[Serializable]
public class LR_lot
{
#region 私有字段
private int? _dosing_id;
private string _plan_id;
private string _equip_Code;
private int? _serial_Num;
private string _prd_date;
private float _real_weight;
private float _real_Error;
private int? _waste_Time;
private int? _warning_sgn;
private float _net_Weight;
private int? _ng_sgn;
private int? _resetFlag;
private int? _resetStationNo;
private string _lot_Barcode;
#endregion
#region 公有属性
public int? Dosing_id
{
get { return _dosing_id; }
set { _dosing_id = value; }
}
public string Plan_id
{
get { return _plan_id; }
set { _plan_id = value; }
}
public string Equip_Code
{
get { return _equip_Code; }
set { _equip_Code = value; }
}
public int? Serial_Num
{
get { return _serial_Num; }
set { _serial_Num = value; }
}
public string Prd_date
{
get { return _prd_date; }
set { _prd_date = value; }
}
public float Real_weight
{
get { return _real_weight; }
set { _real_weight = value; }
}
public float Real_Error
{
get { return _real_Error; }
set { _real_Error = value; }
}
public int? Waste_Time
{
get { return _waste_Time; }
set { _waste_Time = value; }
}
public int? Warning_sgn
{
get { return _warning_sgn; }
set { _warning_sgn = value; }
}
public float Net_Weight
{
get { return _net_Weight; }
set { _net_Weight = value; }
}
public int? Ng_sgn
{
get { return _ng_sgn; }
set { _ng_sgn = value; }
}
public int? ResetFlag
{
get { return _resetFlag; }
set { _resetFlag = value; }
}
public int? ResetStationNo
{
get { return _resetStationNo; }
set { _resetStationNo = value; }
}
public string Lot_Barcode
{
get { return _lot_Barcode; }
set { _lot_Barcode = value; }
}
#endregion
}
}