|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 实体类LR_weigh
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class LR_weigh
|
|
|
|
|
{
|
|
|
|
|
#region 私有字段
|
|
|
|
|
|
|
|
|
|
private int? _dosing_id;
|
|
|
|
|
private string _plan_id;
|
|
|
|
|
private string _equip_Code;
|
|
|
|
|
private int? _serial_Num;
|
|
|
|
|
private int? _weight_ID;
|
|
|
|
|
private string _material_Code;
|
|
|
|
|
private float _real_weight;
|
|
|
|
|
private float _real_Error;
|
|
|
|
|
private decimal? _over_Weight;
|
|
|
|
|
private decimal? _over_Error;
|
|
|
|
|
private int? _waste_Time;
|
|
|
|
|
private int? _warning_sgn;
|
|
|
|
|
private string _weight_Time;
|
|
|
|
|
private string _batch_Number;
|
|
|
|
|
private string _recipe_code;
|
|
|
|
|
|
|
|
|
|
#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 int? Weight_ID
|
|
|
|
|
{
|
|
|
|
|
get { return _weight_ID; }
|
|
|
|
|
set { _weight_ID = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Material_Code
|
|
|
|
|
{
|
|
|
|
|
get { return _material_Code; }
|
|
|
|
|
set { _material_Code = 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 decimal? Over_Weight
|
|
|
|
|
{
|
|
|
|
|
get { return _over_Weight; }
|
|
|
|
|
set { _over_Weight = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public decimal? Over_Error
|
|
|
|
|
{
|
|
|
|
|
get { return _over_Error; }
|
|
|
|
|
set { _over_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 string Weight_Time
|
|
|
|
|
{
|
|
|
|
|
get { return _weight_Time; }
|
|
|
|
|
set { _weight_Time = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Batch_Number
|
|
|
|
|
{
|
|
|
|
|
get { return _batch_Number; }
|
|
|
|
|
set { _batch_Number = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Recipe_code
|
|
|
|
|
{
|
|
|
|
|
get { return _recipe_code; }
|
|
|
|
|
set { _recipe_code = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|