b_day_bulletin_board.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. using Business.Core.Attributes;
  2. using Microsoft.EntityFrameworkCore;
  3. namespace Business.Domain
  4. {
  5. /// <summary>
  6. /// 每天消耗物料明细
  7. /// </summary>
  8. [CollectionName("dopbase", "b_day_bulletin_board")]
  9. [Comment("物料齐套明细")]
  10. public class b_day_bulletin_board : BaseEntity
  11. {
  12. /// <summary>
  13. /// 日期
  14. /// </summary>
  15. [Comment("日期")]
  16. public string day { get; set; }
  17. /// <summary>
  18. /// 类别:1-工单齐套检查;2-替代料齐套检查
  19. /// </summary>
  20. [Comment("类别")]
  21. public int? type { get; set; }
  22. /// <summary>
  23. /// 物料名称
  24. /// </summary>
  25. [Comment("物料名称")]
  26. public string item_name { get; set; }
  27. /// <summary>
  28. /// 物料编码
  29. /// </summary>
  30. [Comment("物料编码")]
  31. public string item_number { get; set; }
  32. /// <summary>
  33. /// 库存占用数量
  34. /// </summary>
  35. [Comment("库存占用数量")]
  36. [Precision(23, 10)]
  37. public decimal? use_qty { get; set; }
  38. /// <summary>
  39. /// 自制数量
  40. /// </summary>
  41. [Comment("自制数量")]
  42. [Precision(23, 10)]
  43. public decimal? make_qty { get; set; }
  44. /// <summary>
  45. /// 在制占用数量
  46. /// </summary>
  47. [Comment("在制占用数量")]
  48. [Precision(23, 10)]
  49. public decimal? mo_qty { get; set; }
  50. /// <summary>
  51. /// 采购占用数量
  52. /// </summary>
  53. [Comment("采购占用数量")]
  54. [Precision(23, 10)]
  55. public decimal? purchase_occupy_qty { get; set; }
  56. /// <summary>
  57. /// 缺料数量
  58. /// </summary>
  59. [Comment("缺料数量")]
  60. [Precision(23, 10)]
  61. public decimal? self_lack_qty { get; set; }
  62. }
  63. }