b_mo_occupy.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using Business.Core.Attributes;
  2. using Microsoft.EntityFrameworkCore;
  3. using System;
  4. using System.ComponentModel.DataAnnotations;
  5. namespace Business.Domain
  6. {
  7. /// <summary>
  8. /// 在制占用明细
  9. /// </summary>
  10. [CollectionName("dopbase", "b_mo_occupy")]
  11. [Comment("在制占用明细")]
  12. public class b_mo_occupy : BaseEntity
  13. {
  14. /// <summary>
  15. /// 物料检查明细ID
  16. /// </summary>
  17. [Comment("物料检查明细ID")]
  18. public long? bom_child_examine_id { get; set; }
  19. /// <summary>
  20. /// 工单号
  21. /// </summary>
  22. [StringLength(50)]
  23. [Comment("工单号")]
  24. public string moo_mo { get; set; }
  25. /// <summary>
  26. /// 占用量
  27. /// </summary>
  28. [Comment("占用量")]
  29. [Precision(23, 10)]
  30. public decimal? moo_qty { get; set; }
  31. /// <summary>
  32. /// 开始时间
  33. /// </summary>
  34. [Comment("开始时间")]
  35. public DateTime? moo_stime { get; set; }
  36. /// <summary>
  37. /// 结束时间
  38. /// </summary>
  39. [Comment("结束时间")]
  40. public DateTime? moo_etime { get; set; }
  41. }
  42. }