|
|
@@ -0,0 +1,90 @@
|
|
|
+using Business.Model;
|
|
|
+using Microsoft.EntityFrameworkCore;
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace Bussiness.Model.Production
|
|
|
+{
|
|
|
+ /// <summary>
|
|
|
+ /// 工单排产记录表
|
|
|
+ /// </summary>
|
|
|
+ [Comment("生产周期表")]
|
|
|
+ public class ScheduleResultOpMaster : BaseEntity
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// 主键
|
|
|
+ /// </summary>
|
|
|
+ [Comment("主键")]
|
|
|
+ public int? RecID { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 域名
|
|
|
+ /// </summary>
|
|
|
+ [Comment("域名")]
|
|
|
+ public string? Domain { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 工单
|
|
|
+ /// </summary>
|
|
|
+ [Comment("工单")]
|
|
|
+ public string? WorkOrd { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 生产线
|
|
|
+ /// </summary>
|
|
|
+ [Comment("生产线")]
|
|
|
+ public string? Line { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 物料编号
|
|
|
+ /// </summary>
|
|
|
+ [Comment("物料编号")]
|
|
|
+ public string? ItemNum { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 工序
|
|
|
+ /// </summary>
|
|
|
+ [Comment("工序")]
|
|
|
+ public int? Op { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 计划日期
|
|
|
+ /// </summary>
|
|
|
+ [Comment("计划日期")]
|
|
|
+ public DateTime? WorkDate { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 计划数量
|
|
|
+ /// </summary>
|
|
|
+ [Comment("计划数量")]
|
|
|
+ public decimal? WorkQty { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 换型开始时间
|
|
|
+ /// </summary>
|
|
|
+ [Comment("换型开始时间")]
|
|
|
+ public DateTime? SetupStartTime { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 换型结束时间
|
|
|
+ /// </summary>
|
|
|
+ [Comment("换型结束时间")]
|
|
|
+ public DateTime? SetupEndTime { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 开工时间
|
|
|
+ /// </summary>
|
|
|
+ [Comment("开工时间")]
|
|
|
+ public DateTime? WorkStartTime { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 结束时间
|
|
|
+ /// </summary>
|
|
|
+ [Comment("结束时间")]
|
|
|
+ public DateTime? WorkEndTime { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|