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
878 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zzz.Services.ERP.Dtos
{
/// <summary>
/// 各产品生产数量
/// </summary>
public class ProductQtyDto
{
/// <summary>
/// x轴
/// </summary>
public xAxisDto xAxis { get;set; } = new xAxisDto();
/// <summary>
/// series
/// </summary>
public List<seriesDto> series { get; set; } = new List<seriesDto>();
}
public class xAxisDto
{
public string type { get; set; }
public List<string> data { get; set; } = new List<string>();
}
public class seriesDto
{
public string name { get; set; }
public string type { get; set; }
public List<decimal> data { get; set; } = new List<decimal>();
}
}