using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RIZO.Model.MES.product { /// /// 日计划达成率版本2 /// [SugarTable("pro_plan_achievementrate_version2")] public class ProPlanAchievementrateVersion2 { /// /// 自增主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 项目号(线别) /// public string Project { get; set; } /// /// 记录日期 /// [SugarColumn(ColumnName = "record_date")] public DateTime? RecordDate { get; set; } /// /// 日汇总-实际数 SummaryActualNum /// [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 = "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; } } }