using System; using System.Linq; using System.Text; using SqlSugar; namespace Tnb.ProductionMgr.Entities { /// ///自检报废子表项 /// [SugarTable("self_test_scrapped_item")] public partial class SelfTestScrappedItem { /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string id { get; set; } /// /// Desc:自检报废id /// Default: /// Nullable:True /// public string defective_cagetory_id { get; set; } /// /// Desc:次品项 /// Default: /// Nullable:True /// public string defective_item { get; set; } /// /// Desc:次品项数量 /// Default: /// Nullable:True /// public int defective_item_qty { get; set; } } }