| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Wms.Screen.Dto.ZhongTian.Response
- {
- public class GeHistoryTaskInfoRes
- {
- /// <summary>
- /// 日期
- /// </summary>
- public List<string> DateList { get; set; }
- /// <summary>
- /// 入库列表
- /// </summary>
- public List<int> StockInList { get; set; }
- /// <summary>
- /// 出库列表
- /// </summary>
- public List<int> StockOutList { get; set; }
- }
- public class GeFJHistoryTaskInfoRes: GeHistoryTaskInfoRes
- {
- public GeFJHistoryTaskInfoRes()
- {
- DateList=new List<string>();
- StockInList=new List<int>();
- StockOutList=new List<int>();
- SetPlateList = new List<int>();
- }
- public List<int> SetPlateList { get; set; }
- }
- }
|