zhuangpei-mesbackend/ZR.Model/MES/andon/Dto/AndonAnalysisQueryDto.cs
2024-06-20 13:37:46 +08:00

27 lines
538 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.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; }
}
}