using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.OFILM { public class MacAndChargeDto { public List Data { get; set; } = new List(); } public class ChartEntity { /// /// 名称 /// public string Name { get; set; } /// /// 值 /// public decimal Value { get; set; } public string Mon { get; set; } } public class MacEntity { /// /// 园区 /// public string Factory { get; set; } /// /// 楼层 /// public string Floor { get; set; } /// /// 车间 /// public string Room { get; set; } /// /// 设备编号 /// public string MacCode { get; set; } /// /// 设备名称 /// public string MacName { get; set; } /// /// 设备类型 /// public string MacModel { get; set; } /// /// 资产编号 /// public string AssetCode { get; set; } /// /// 责任人名字 /// public string MEName { get; set; } /// /// 责任人工号 /// public string MENo { get; set; } /// /// 主管姓名 /// public string WorkShopName { get; set; } /// /// 主管工号 /// public string WorkShopNo { get; set; } /// /// 到厂时间 /// public DateTime EnterDate { get; set; } /// /// 验收时间 /// public DateTime CheckDate { get; set; } /// /// 有效时间 /// public DateTime ValidDate { get; set; } } public class MacChargeEntity { /// /// 园区 /// public string Factory { get; set; } /// /// 楼层 /// public string Floor { get; set; } /// /// 车间 /// public string Room { get; set; } /// /// 库存费用 /// public decimal StockCharge { get; set; } /// /// 使用费用 /// public decimal UseCharge { get; set; } /// /// 总费用 /// public decimal TotalCharge { get; set; } /// /// 项目 /// public string Item { get; set; } /// /// 描述 /// public string ItemDesc { get; set; } /// /// 领用时间 /// public DateTime CreateDate { get; set; } } public class ChartDto { /// /// 标签数据 /// public List LegendData { get; set; } = new List(); /// /// x轴 /// public List XData { get; set; } = new List(); public List SeriesData { get; set; } = new List(); } public class Series { /// /// 名称 /// public string Name { get; set; } public int YAxis { get; set; } public bool Visible { get; set; } = true; /// /// 类型 /// public string Type { get; set; } /// /// 数据 /// public List Data { get; set; } } }