GeHistoryTaskInfoRes.cs 887 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Wms.Screen.Dto.ZhongTian.Response
  5. {
  6. public class GeHistoryTaskInfoRes
  7. {
  8. /// <summary>
  9. /// 日期
  10. /// </summary>
  11. public List<string> DateList { get; set; }
  12. /// <summary>
  13. /// 入库列表
  14. /// </summary>
  15. public List<int> StockInList { get; set; }
  16. /// <summary>
  17. /// 出库列表
  18. /// </summary>
  19. public List<int> StockOutList { get; set; }
  20. }
  21. public class GeFJHistoryTaskInfoRes: GeHistoryTaskInfoRes
  22. {
  23. public GeFJHistoryTaskInfoRes()
  24. {
  25. DateList=new List<string>();
  26. StockInList=new List<int>();
  27. StockOutList=new List<int>();
  28. SetPlateList = new List<int>();
  29. }
  30. public List<int> SetPlateList { get; set; }
  31. }
  32. }