using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Runtime.InteropServices.JavaScript.JSType;
namespace DOAN.Model.MES.andon.Dto
{
public class AndonAnalysisQueryDto
{
public DateTime[] DateTimeRange { get; set; }
}
public class AbnormalDurationRatioResult
{
public string Name { get; set; }
public string value { get; set; }
public ItemStyle_ itemStyle { get; set; }
}
public class ItemStyle_ {
public string color { get; set; }
}
///
/// 获取异常情况柱状图
///
public class ExceptionDistributionResult
{
///
/// 异常时间占比
///
public decimal ExceptionTimeTotal { get; set; }
///
/// 异常总数
///
public decimal ExceptionNumTotal { get; set; }
///
/// X轴
///
public string[] xData { get; set; }
public SeriesData_[] seriesData { get; set; }
}
public class SeriesData_
{
public string Name { get; set; }
public string Type { get; set; }
public int YAxisIndex { get; set; }
public bool ShowBackground { get; set; }
public decimal[] Data { get; set; }
}
}