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.
79 lines
1.7 KiB
C#
79 lines
1.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>
|
|
/// 实体类Pmt_weigh
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Pmt_weigh
|
|
{
|
|
#region 私有字段
|
|
|
|
private string _iD;
|
|
private string _equip_Code;
|
|
private string _recipe_ID;
|
|
private int? _weight_Id;
|
|
private string _material_ID;
|
|
private double? _set_Weight;
|
|
private double? _set_Error;
|
|
private double? _cpk_Error;
|
|
|
|
#endregion
|
|
|
|
#region 公有属性
|
|
|
|
public string ID
|
|
{
|
|
get { return _iD; }
|
|
set { _iD = value; }
|
|
}
|
|
|
|
public string Equip_Code
|
|
{
|
|
get { return _equip_Code; }
|
|
set { _equip_Code = value; }
|
|
}
|
|
|
|
public string Recipe_ID
|
|
{
|
|
get { return _recipe_ID; }
|
|
set { _recipe_ID = value; }
|
|
}
|
|
|
|
public int? Weight_Id
|
|
{
|
|
get { return _weight_Id; }
|
|
set { _weight_Id = value; }
|
|
}
|
|
|
|
public string Material_ID
|
|
{
|
|
get { return _material_ID; }
|
|
set { _material_ID = value; }
|
|
}
|
|
|
|
public double? Set_Weight
|
|
{
|
|
get { return _set_Weight; }
|
|
set { _set_Weight = value; }
|
|
}
|
|
public double? Set_Error
|
|
{
|
|
get { return _set_Error; }
|
|
set { _set_Error = value; }
|
|
}
|
|
public double? Cpk_Error
|
|
{
|
|
get { return _cpk_Error; }
|
|
set { _cpk_Error = value; }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|