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 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; } } }