using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZR.Model.MES.qu { /// /// 毛坯统计表 /// [SugarTable("qc_rough")] public class QcRough { /// /// 流水号 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public string Id { get; set; } /// /// 领料单id /// [SugarColumn(ColumnName = "fk_materialRequisition_id")] public string FkMaterialrequisitionId { get; set; } /// /// 应到数量 /// [SugarColumn(ColumnName = "require_num")] public int? RequireNum { get; set; } /// /// 实际到达数量 /// [SugarColumn(ColumnName = "actual_number")] public int? ActualNumber { get; set; } /// /// 抽检比例% /// [SugarColumn(ColumnName = "randomRate")] public int? RandomRate { get; set; } /// /// 合格数 /// [SugarColumn(ColumnName = "oks")] public int? Oks { get; set; } /// /// 不合格数 /// [SugarColumn(ColumnName = "ngs")] public int? Ngs { get; set; } /// /// 合格率 /// [SugarColumn(ColumnName = "oks_ratio")] public decimal? OksRatio { get; set; } /// /// 是否可以上料 /// [SugarColumn(ColumnName = "isFeeding")] public string IsFeeding { get; set; } /// /// 乐观锁 /// [SugarColumn(ColumnName = "REVISION")] public int? Revision { 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; } } }