using Business.Core.Attributes; using Microsoft.EntityFrameworkCore; using System; using System.ComponentModel.DataAnnotations; namespace Business.Domain { /// /// 资源检查 /// [CollectionName("dopbase", "b_examine_result")] [Comment("资源检查")] public class b_examine_result : BaseEntity { /// /// 订单id /// [Comment("订单id")] public long? sorderid { get; set; } /// /// 订单编号 /// [StringLength(50)] [Comment("订单编号")] public string bill_no { get; set; } /// /// 订单行id /// [Comment("订单行id")] public long? sentry_id { get; set; } /// /// 行号 /// [Comment("行号")] public int? entry_seq { get; set; } /// /// 工单id /// [Comment("工单id")] public long? morder_id { get; set; } /// /// 工单号 /// [StringLength(50)] [Comment("工单号")] public string morder_no { get; set; } /// /// BOM编码 /// [StringLength(20)] [Comment("BOM编码")] public string bom_number { get; set; } /// /// 需要数量 /// [Comment("需要数量")] [Precision(23, 10)] public decimal? need_qty { get; set; } /// /// 需求日期 /// [Comment("需求日期")] public DateTime? need_time { get; set; } /// /// 最早开工时间 /// [Comment("最早开工时间")] public DateTime? earliest_times { get; set; } /// /// 最晚开工时间 /// [Comment("最晚开工时间")] public DateTime? latest_times { get; set; } /// /// 工单开工时间 /// [Comment("工单开工时间")] public DateTime? order_statr_time { get; set; } /// /// 物料齐套时间 /// [Comment("物料齐套时间")] public DateTime? kitting_times { get; set; } /// /// 建议交期(物料) /// [Comment("建议交期(物料)")] public DateTime? sys_material_date { get; set; } /// /// 建议交期(产能) /// [Comment("建议交期(产能)")] public DateTime? sys_capacity_date { get; set; } /// /// 计算ID /// [Comment("计算id")] public long? bangid { get; set; } } }