using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.Entity { /// /// 实体类Pmt_recipe /// [Serializable] public class Pmt_recipe { #region 公有属性 public string ID { get; set; } public string Equip_Code { get; set; } public string Recipe_Code { get; set; } public string Version { get; set; } public string Recipe_Name { get; set; } public string Mixer_line { get; set; } public int Recipe_type { get; set; } public int Recipe_Used { get; set; } public int Recipe_Verify { get; set; } public decimal? Total_Weight { get; set; } public decimal? Total_Error { get; set; } public string End_datetime { get; set; } public string Remark { get; set; } public int Attach_User { get; set; } public int GroupBags { get; set; } public int IF_FLAG { get; set; } public int Validity { get; set; } #endregion } }