ICItemLeadTimeDto.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace Business.ResourceExamineManagement.Dto
  10. {
  11. public class ICItemLeadTimeDto
  12. {
  13. /// <summary>
  14. /// 物料id
  15. /// </summary>
  16. public long item_id { get; set; }
  17. /// <summary>
  18. /// 运输中提前期_天
  19. /// </summary>
  20. public decimal? transportation_leadtime { get; set; }
  21. /// <summary>
  22. /// 仓库中提前期_天
  23. /// </summary>
  24. public decimal? stock_leadtime { get; set; }
  25. /// <summary>
  26. /// 生产中提前期_天
  27. /// </summary>
  28. public decimal? production_leadtime { get; set; }
  29. /// <summary>
  30. /// 下单提前期_天
  31. /// </summary>
  32. public decimal? order_leadtime { get; set; }
  33. /// <summary>
  34. /// 最小订单量
  35. /// </summary>
  36. [Comment("最小订单量")]
  37. public decimal? minorderqty { get; set; }
  38. }
  39. }