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.
20 lines
605 B
C#
20 lines
605 B
C#
namespace CncModels.Dto.Production
|
|
{
|
|
/// <summary>
|
|
/// 日产量列表项
|
|
/// </summary>
|
|
public class DailyProductionListItem
|
|
{
|
|
public int Id { get; set; }
|
|
public string Date { get; set; }
|
|
public string MachineName { get; set; }
|
|
public string ProgramName { get; set; }
|
|
public int Quantity { get; set; }
|
|
public string RunTime { get; set; }
|
|
public string CuttingTime { get; set; }
|
|
public string DataStatus { get; set; }
|
|
public int IsAdjusted { get; set; }
|
|
public int? AdjustedQuantity { get; set; }
|
|
}
|
|
}
|