zhuangpei-mesbackend/DOAN.Model/MES/andon/Dto/AndonAnalysisQueryDto.cs

64 lines
1.4 KiB
C#
Raw Normal View History

2024-06-20 13:37:46 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Runtime.InteropServices.JavaScript.JSType;
2024-06-20 13:37:46 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Model.MES.andon.Dto
2024-06-20 13:37:46 +08:00
{
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; }
}
/// <summary>
/// 获取异常情况柱状图
/// </summary>
public class ExceptionDistributionResult
{
/// <summary>
/// 异常时间占比
/// </summary>
public decimal ExceptionTimeTotal { get; set; }
/// <summary>
/// 异常总数
/// </summary>
public decimal ExceptionNumTotal { get; set; }
/// <summary>
/// X轴
/// </summary>
public string[] xData { get; set; }
public SeriesData_[] seriesData { get; set; }
}
public class SeriesData_
{
public string Name { get; set; }
public string Type { get; set; }
2024-06-20 15:18:46 +08:00
public int YAxisIndex { get; set; }
public bool ShowBackground { get; set; }
public decimal[] Data { get; set; }
}
2024-06-20 13:37:46 +08:00
}