using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.StructuredDB.Production { /// /// 交货单异常记录表 /// [Comment("交货单异常记录表")] public class DeliveryExceptionMaster { /// /// 主键 /// [Comment("主键")] [Key] public long RecID { get; set; } /// /// 工厂编码 /// [Comment("工厂编码")] public string Domain { get; set; } /// /// 交货计划ID /// [Comment("交货计划ID")] public long Icdsid { get; set; } /// /// 物料编码 /// [Comment("物料编码")] public string ItemNum { get; set; } /// /// 创建时间 /// [Comment("创建时间")] public DateTime CreateTime { get; set; } /// /// 异常原因 /// [Comment("异常原因")] public string Remark { get; set; } /// /// 操作时间 /// [Comment("操作时间")] public string OptTime { get; set; } /// /// 缺料数量 /// [Comment("操作时间")] public decimal NeedQty { get; set; } } }