using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZR.Model.MES.qu { /// /// 毛坯统计表 /// [SugarTable("qu_rough")] public class QuRough { /// /// 流水号 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public string Id { get; set; } /// /// 生产工单id /// [SugarColumn(ColumnName = "fk_pro_order_id")] public string FkProOrderId { get; set; } /// /// 需要数量 /// [SugarColumn(ColumnName = "require_num")] public int? RequireNum { get; set; } /// /// 实际数量 /// [SugarColumn(ColumnName = "actual_number")] public int? ActualNumber { get; set; } /// /// 合格数 /// [SugarColumn(ColumnName = "oks")] public int? Oks { get; set; } /// /// 不合格数 /// [SugarColumn(ColumnName = "ngs")] public string Ngs { get; set; } /// /// 合格率 /// [SugarColumn(ColumnName = "oks_ratio")] public string OksRatio { get; set; } /// /// 是否上料 /// [SugarColumn(ColumnName = "isFeeding")] public int IsFeeding { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "UPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "UPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }