namespace RIZO.Model.MES.product { /// /// 日计划达成率 /// [SugarTable("pro_plan_achievementrate")] public class ProPlanAchievementrate { /// /// 自增主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 项目号(线别) /// public string Project { get; set; } /// /// A班组长 /// [SugarColumn(ColumnName = "agroup_monitor")] public string AgroupMonitor { get; set; } /// /// A班生产数量 /// [SugarColumn(ColumnName = "agroup_product_num")] public int? AgroupProductNum { get; set; } /// /// A班标准班产 /// [SugarColumn(ColumnName = "agroup_standard_yield")] public int? AgroupStandardYield { get; set; } /// /// A班计划数量 /// [SugarColumn(ColumnName = "agroup_plan_num")] public int? AgroupPlanNum { get; set; } /// /// A班完成率 /// [SugarColumn(ColumnName = "agroup_completion_rate")] public decimal AgroupCompletionRate { get; set; } /// /// B班组长 /// [SugarColumn(ColumnName = "bgroup_monitor")] public string BgroupMonitor { get; set; } /// /// B班生产数量 /// [SugarColumn(ColumnName = "bgroup_product_num")] public int? BgroupProductNum { get; set; } /// /// B班标准班产 /// [SugarColumn(ColumnName = "bgroup_standard_yield")] public int? BgroupStandardYield { get; set; } /// /// B班计划数量 /// [SugarColumn(ColumnName = "bgroup_plan_num")] public int? BgroupPlanNum { get; set; } /// /// B班完成率 /// [SugarColumn(ColumnName = "bgroup_completion_rate")] public decimal BgroupCompletionRate { get; set; } /// /// 日汇总-实际数 /// [SugarColumn(ColumnName = "summary_actual_num")] public int? SummaryActualNum { get; set; } /// /// 日汇总-计划数 /// [SugarColumn(ColumnName = "summary_plan_num")] public int? SummaryPlanNum { get; set; } /// /// 日汇总-计划达成率 /// [SugarColumn(ColumnName = "summary_plan_achievement_rate")] public decimal SummaryPlanAchievementRate { get; set; } /// /// 质量问题 /// [SugarColumn(ColumnName = "down_quality")] public int? DownQuality { get; set; } /// /// 供应商问题 /// [SugarColumn(ColumnName = "down_suppler")] public int? DownSuppler { get; set; } /// /// 设备故障 /// [SugarColumn(ColumnName = "down_device_failure")] public int? DownDeviceFailure { get; set; } /// /// 设备调试 /// [SugarColumn(ColumnName = "down_device_debug")] public int? DownDeviceDebug { get; set; } /// /// 物流待料 /// [SugarColumn(ColumnName = "down_logistics_wait_material")] public int? DownLogisticsWaitMaterial { get; set; } /// /// 缺货待料 /// [SugarColumn(ColumnName = "down_lack_material")] public int? DownLackMaterial { get; set; } /// /// 项目 /// [SugarColumn(ColumnName = "down_project")] public int? DownProject { get; set; } /// /// 注塑 /// [SugarColumn(ColumnName = "down_injection")] public int? DownInjection { get; set; } /// /// 装配 /// [SugarColumn(ColumnName = "down_assembly")] public int? DownAssembly { get; set; } /// /// 总停线时间 /// [SugarColumn(ColumnName = "all_line_stop_time")] public int? AllLineStopTime { get; set; } /// /// 主要问题描述 /// [SugarColumn(ColumnName = "main_problem_description")] public string MainProblemDescription { get; set; } /// /// 策略 /// public string Strategy { get; set; } /// /// 责任人 /// [SugarColumn(ColumnName = "responsible_person")] public string ResponsiblePerson { get; set; } /// /// 记录日期 /// [SugarColumn(ColumnName = "record_date")] public DateTime? RecordDate { 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; } } }