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