You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
haoliang-net/src/CncModels/Dto/Machine/MachineTodayProdItem.cs

21 lines
541 B
C#

namespace CncModels.Dto.Machine
{
/// <summary>
/// 机床今日产量明细项
/// </summary>
public class MachineTodayProdItem
{
/// <summary>NC程序名</summary>
public string ProgramName { get; set; }
/// <summary>产量</summary>
public int Quantity { get; set; }
/// <summary>运行时间(分钟)</summary>
public decimal? RunTime { get; set; }
/// <summary>切削时间(分钟)</summary>
public decimal? CuttingTime { get; set; }
}
}