using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace NXWMS.Client.Model.AppModels.Result.Report { /// /// 班次统计 /// public class FrequencyStatisticsResult { /// /// 日期 /// public string Date { get; set; } /// /// 排班 /// public string Schedule { get; set; } /// /// 排班时间段 /// public string ScheduleTimeSection { get; set; } /// /// 收货订单数 /// public int ReceiptOrderQTY { get; set; } /// /// 收货组盘数 /// public int ReceiptTrayQTY { get; set; } /// /// 发货数量 /// public int InvoiveQTY { get; set; } /// /// 发货审核数 /// public int InvoiveExamineQTY { get; set; } /// /// 上架数量 /// public int PutAwayQTY { get; set; } /// /// 下架数量 /// public int PutDownQTY { get; set; } } }