27 lines
538 B
C#
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; }
|
|
}
|
|
}
|