using System; using System.Linq; using System.Text; using SqlSugar; namespace Tnb.ProductionMgr.Entities { /// /// 自检报废 /// [SugarTable("self_test_scrapped")] public partial class SelfTestScrapped { /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string id { get; set; } /// /// Desc:任务单号 /// Default: /// Nullable:True /// public string icmo_code { get; set; } /// /// Desc:次品分类 /// Default: /// Nullable:True /// public string defective_category { get; set; } /// /// Desc:分类数量 /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "category_qty")] public int? category_qty { get; set; } /// /// Desc:报废数量 /// Default: /// Nullable:True /// public int? scrap_qty { get; set; } /// /// Desc:备注 /// Default: /// Nullable:True /// public string remark { get; set; } /// /// Desc:创建人 /// Default: /// Nullable:True /// public string create_id { get; set; } /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? create_time { get; set; } } }