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