ReplenishmentROPWeekPlanDto.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.Replenishment
  9. {
  10. /// <summary>
  11. ///补货模型ROP
  12. /// </summary>
  13. [Comment("补货模型ROP周计划")]
  14. [Keyless]
  15. public class ReplenishmentROPWeekPlanDto
  16. {
  17. /// <summary>
  18. /// 物料编码
  19. /// </summary>
  20. [StringLength(80)]
  21. [Comment("物料编码")]
  22. public string number { get; set; }
  23. /// <summary>
  24. /// 出库总金额
  25. /// </summary>
  26. [Precision(20, 8)]
  27. [Comment("出库总金额")]
  28. public decimal outstock_amout { get; set; }
  29. /// <summary>
  30. /// 金额占比
  31. /// </summary>
  32. [Precision(20, 8)]
  33. [Comment("金额占比")]
  34. public decimal amout_scale { get; set; }
  35. /// <summary>
  36. /// ABC
  37. /// </summary>
  38. [Precision(20, 8)]
  39. [Comment("ABC")]
  40. public string ABC { get; set; }
  41. }
  42. }