using Newtonsoft.Json; using Org.BouncyCastle.Bcpg; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.BZModels.Dto { public class ValueName { [JsonProperty("value")] public T Value { get; set; } [JsonProperty("name")] public string Name { get; set; } } public class Models //主要用于柱状图 { [JsonProperty("xAxis")] public string[] XAxis { get; set; } //data 数组 x轴的显示的name值 [JsonProperty("series")] public List Series { get; set; } } public class Series { [JsonProperty("name")] public string Name { get; set; } //标题 [JsonProperty("type")] public string Type { get; set; } = "bar"; // line [JsonProperty("data")] public int[] Data { get; set; } // y轴的显示的 value 值 [JsonProperty("barGap")] public string BarGap { get; set; } = "0%"; } public class TodayTaskInOutPieDto { [JsonProperty("tasks")] public List> Tasks { get; set; } [JsonProperty("total")] public int Total { get; set; } } public class TaskInOutDto { public int Count { get; set; } public int? Type { get; set; } public string BusType { get; set; } public DateTime CreateTime { get; set; } public string WarehouseCode { get; set; } public int Hour { get; set; } public int Day { get; set; } public int FullQty { get; set; } //满拖数 } public class TaskStatisticsDto { public int Count { get; set; } public int? Type { get; set; } public string BusType { get; set; } public string WarehouseCode { get; set; } } public class DailyStatisticsDto { public string WarehouseName { get; set; } /// /// 桁架北产量 /// public int TrussNorthQty { get; set; } /// /// 桁架南产量 /// public int TrussSouthQty { get; set; } /// /// 环形库南产量 /// public int CircularSouthQty { get; set; } /// /// 环形库北产量 /// public int CircularNorthQty { get; set; } /// /// 日产能汇总 /// public int DailySummary { get; set; } /// /// 满拖数(正常) /// public int FullNormalQty { get; set; } /// /// 空拖数(异常) /// public int EmptyAbnormalQty { get; set; } /// /// 空托回库(自动回库) /// public int EmptyAutomaticQty { get; set; } /// /// 空托回库(单独取空) /// public int EmptyWarehouseQty { get; set; } } public class AdminDesktopHomeDto { } }