You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
917 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zzz.Services.ERP.Dtos
{
/// <summary>
/// 设备利用率DTO
/// </summary>
public class LineRateDto
{
/// <summary>
/// x轴
/// </summary>
public xAxisDto01 xAxis { get;set; } = new xAxisDto01();
/// <summary>
/// series
/// </summary>
public List<seriesDto01> series { get; set; } = new List<seriesDto01>();
}
public class xAxisDto01
{
public string type { get; set; } = "category";
public List<string> data { get; set; } = new List<string>();
}
public class seriesDto01
{
public bool smooth { get; set; } = true;
public string type { get; set; } = "line";
public List<decimal> data { get; set; } = new List<decimal>();
}
}