using System; using System.Linq; using System.Text; using SqlSugar; namespace Admin.Core.Model { /// ///配方信息 /// [SugarTable("Pmt_recipe", "cwss_xl")] public class Pmt_recipe { public Pmt_recipe() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string ID { get; set; } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Recipe_Serial { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Equip_Code { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Recipe_Code { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Version { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Recipe_Name { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Mixer_line { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? Recipe_type { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? Recipe_Used { get; set; } /// /// Desc: /// Default:0 /// Nullable:True /// public int? Recipe_Verify { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public decimal? Total_Weight { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public decimal? Total_Error { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string End_datetime { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Remark { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? Attach_User { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? GroupBags { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? IF_FLAG { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? Validity { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public int? ValidDays { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string UpdateByID { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string UpdateBy { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string CreatorID { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Creator { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public DateTime? CreateDateTime { get; set; } } }