| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- 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
- {
- /// <summary>
- /// 交货单异常记录表
- /// </summary>
- [Comment("交货单异常记录表")]
- public class DeliveryExceptionMaster
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public long RecID { get; set; }
- /// <summary>
- /// 工厂编码
- /// </summary>
- [Comment("工厂编码")]
- public string Domain { get; set; }
- /// <summary>
- /// 交货计划ID
- /// </summary>
- [Comment("交货计划ID")]
- public long Icdsid { get; set; }
- /// <summary>
- /// 物料编码
- /// </summary>
- [Comment("物料编码")]
- public string ItemNum { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Comment("创建时间")]
- public DateTime CreateTime { get; set; }
- /// <summary>
- /// 异常原因
- /// </summary>
- [Comment("异常原因")]
- public string Remark { get; set; }
- /// <summary>
- /// 操作时间
- /// </summary>
- [Comment("操作时间")]
- public string OptTime { get; set; }
- /// <summary>
- /// 缺料数量
- /// </summary>
- [Comment("操作时间")]
- public decimal NeedQty { get; set; }
- }
- }
|