ICItemLeadTimeDto.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. /// <summary>
  39. /// 投料自动取整
  40. /// </summary>
  41. [Comment("投料自动取整")]
  42. public int? put_integer { get; set; }
  43. /// <summary>
  44. /// 工单发料时间/天
  45. /// </summary>
  46. [Precision(23, 10)]
  47. [Comment("工单发料时间/天")]
  48. public decimal? ordissu_days { get; set; }
  49. /// <summary>
  50. /// 最小包装量
  51. /// </summary>
  52. [Comment("最小包装量")]
  53. [Required]
  54. [DefaultValue(0)]
  55. [Precision(23, 10)]
  56. public decimal? minpackqty { get; set; }
  57. }
  58. }