InvTransHistDayDto.cs 740 B

123456789101112131415161718192021222324252627282930
  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.MES
  9. {
  10. /// <summary>
  11. /// 物料编码列表
  12. /// </summary>
  13. [Comment("物料编码列表")]
  14. [Keyless]
  15. public partial class InvTransHistDayDto
  16. {
  17. /// <summary>
  18. /// 物料编号
  19. /// </summary>
  20. [Comment("物料编号")]
  21. public string ItemNum { get; set; }
  22. /// <summary>
  23. /// 快照最大计算时间
  24. /// </summary>
  25. [Comment("快照最大计算时间")]
  26. public DateTime? HistMinTime { get; set; }
  27. }
  28. }