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.
87 lines
1.9 KiB
C#
87 lines
1.9 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_Bin
|
|
{
|
|
#region 私有字段
|
|
|
|
private string _equip_Code;
|
|
private int? _bin_Serial;
|
|
private int? _dosing_ID;
|
|
private string _material_ID;
|
|
private int? _bin_Capacity;
|
|
private int? _bin_Baseline;
|
|
private int? _bin_Residua;
|
|
private int? _bin_UseFlag;
|
|
private int? _iF_FLAG;
|
|
|
|
#endregion
|
|
|
|
#region 公有属性
|
|
|
|
|
|
public string Equip_Code
|
|
{
|
|
get { return _equip_Code; }
|
|
set { _equip_Code = value; }
|
|
}
|
|
|
|
public int? Bin_Serial
|
|
{
|
|
get { return _bin_Serial; }
|
|
set { _bin_Serial = value; }
|
|
}
|
|
|
|
public int? Dosing_ID
|
|
{
|
|
get { return _dosing_ID; }
|
|
set { _dosing_ID = value; }
|
|
}
|
|
|
|
public string Material_ID
|
|
{
|
|
get { return _material_ID; }
|
|
set { _material_ID = value; }
|
|
}
|
|
public int? Bin_Capacity
|
|
{
|
|
get { return _bin_Capacity; }
|
|
set { _bin_Capacity = value; }
|
|
}
|
|
public int? Bin_Baseline
|
|
{
|
|
get { return _bin_Baseline; }
|
|
set { _bin_Baseline = value; }
|
|
}
|
|
|
|
public int? Bin_Residua
|
|
{
|
|
get { return _bin_Residua; }
|
|
set { _bin_Residua = value; }
|
|
}
|
|
|
|
public int? Bin_UseFlag
|
|
{
|
|
get { return _bin_UseFlag; }
|
|
set { _bin_UseFlag = value; }
|
|
}
|
|
|
|
public int? IF_FLAG
|
|
{
|
|
get { return _iF_FLAG; }
|
|
set { _iF_FLAG = value; }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|