using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.Entity
{
///
/// 实体类Pmt_weigh
///
[Serializable]
public class Pmt_Bin
{
public string Equip_Code { get; set; }
///
/// 主键
///
public int Bin_Serial { get; set; }
///
/// 料仓名称
///
public string Bin_Name { get; set; }
///
/// 条码
///
public string Bin_Code { get; set; }
public int Dosing_ID { get; set; }
///
/// 物料编码
///
public string Material_ID { get; set; }
public int Bin_Capacity { get; set; }
public int Bin_Baseline { get; set; }
public int Bin_Residua { get; set; }
public int Bin_UseFlag { get; set; }
///
/// 料仓实时重量
///
public decimal BinWeight { get; set; }
///
/// 料仓设定重量
///
public decimal LimitWeight { get; set; }
///
/// 中速重量
///
public decimal Station_Weight_Medium { get; set; }
///
/// 低速重量
///
public decimal Station_Weight_Low { get; set; }
///
/// 提前量
///
public decimal Station_Weight_Advance { get; set; }
///
/// 高速速度
///
public decimal Station_Speed_Hight { get; set; }
///
/// 中速速度
///
public decimal Station_Speed_Medium { get; set; }
///
/// 低速速度
///
public decimal Station_Speed_Low { get; set; }
public int IF_FLAG { get; set; }
}
}