using System; using System.Linq; using System.Text; using SqlSugar; namespace Admin.Core.Model { /// ///小料-物料信息表2 /// [SugarTable("xl_material", "cwss_xl")] public class xl_material { public xl_material() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string ID { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Material_code { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Material_name { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Remark { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Batch_number { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Barcode1 { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Barcode2 { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string Barcode3 { get; set; } /// /// Desc: /// Default: /// Nullable:True /// public string IsEnable { get; set; } /// /// Desc: /// Default:DateTime.Now /// Nullable:True /// public DateTime? CreateDateTime { get; set; } } }