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.

40 lines
952 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 MonthDataOutput
{
/// <summary>
/// 生产计划达成率
/// </summary>
public decimal MoCompleteRate { get; set; }
/// <summary>
/// 订单交付率
/// </summary>
public decimal PoCompleteRate { get; set; }
/// <summary>
/// 生产数量
/// </summary>
public ProductQtyDto ProductQty { get; set; }
/// <summary>
/// 设备利用率
/// </summary>
public LineRateDto EqmtRate { get; set; }
/// <summary>
/// 产品合格率
/// </summary>
public List<ProductOkRateDto> ProductOKRate { get; set; } = new List<ProductOkRateDto>();
}
}