55 lines
1001 B
C#
55 lines
1001 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.MES.quality.Analysis.Dto
|
|
{
|
|
public class FinalAnalysisDto
|
|
{
|
|
|
|
/// <summary>
|
|
/// 存货编码
|
|
/// </summary>
|
|
|
|
public string ProductionCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品名称
|
|
/// </summary>
|
|
|
|
public string ProductionName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 规格型号
|
|
/// </summary>
|
|
|
|
public string Specification { get; set; }
|
|
|
|
/// <summary>
|
|
/// 日期范围
|
|
/// </summary>
|
|
public DateTime[] DateRange { get; set; } = new DateTime[2];
|
|
|
|
}
|
|
|
|
public class ValueName
|
|
{
|
|
public string Name { get; set; }
|
|
public int Value { get; set; }
|
|
|
|
}
|
|
|
|
public class PieDataDto
|
|
{
|
|
public string[] LegendData { get; set; }
|
|
|
|
|
|
public List<ValueName> SeriesData { get; set; }
|
|
}
|
|
|
|
|
|
|
|
}
|