DeliveryExceptionMaster.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Business.StructuredDB.Production
  9. {
  10. /// <summary>
  11. /// 交货单异常记录表
  12. /// </summary>
  13. [Comment("交货单异常记录表")]
  14. public class DeliveryExceptionMaster
  15. {
  16. /// <summary>
  17. /// 主键
  18. /// </summary>
  19. [Comment("主键")]
  20. [Key]
  21. public long RecID { get; set; }
  22. /// <summary>
  23. /// 工厂编码
  24. /// </summary>
  25. [Comment("工厂编码")]
  26. public string Domain { get; set; }
  27. /// <summary>
  28. /// 交货计划ID
  29. /// </summary>
  30. [Comment("交货计划ID")]
  31. public long Icdsid { get; set; }
  32. /// <summary>
  33. /// 物料编码
  34. /// </summary>
  35. [Comment("物料编码")]
  36. public string ItemNum { get; set; }
  37. /// <summary>
  38. /// 创建时间
  39. /// </summary>
  40. [Comment("创建时间")]
  41. public DateTime CreateTime { get; set; }
  42. /// <summary>
  43. /// 异常原因
  44. /// </summary>
  45. [Comment("异常原因")]
  46. public string Remark { get; set; }
  47. /// <summary>
  48. /// 操作时间
  49. /// </summary>
  50. [Comment("操作时间")]
  51. public string OptTime { get; set; }
  52. /// <summary>
  53. /// 缺料数量
  54. /// </summary>
  55. [Comment("操作时间")]
  56. public decimal NeedQty { get; set; }
  57. }
  58. }