29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
|
|
namespace YY.Admin.Core.Entity;
|
||
|
|
|
||
|
|
/// <summary>密炼生产计划维护(桌面端快检记录筛选用)</summary>
|
||
|
|
public class MesXslMixingProductionPlan
|
||
|
|
{
|
||
|
|
public string? Id { get; set; }
|
||
|
|
public int? SortNo { get; set; }
|
||
|
|
public string? MachineId { get; set; }
|
||
|
|
public string? MachineName { get; set; }
|
||
|
|
|
||
|
|
public string? MorningPlanId { get; set; }
|
||
|
|
public string? MorningPlanType { get; set; }
|
||
|
|
public string? MorningOrderNo { get; set; }
|
||
|
|
public DateTime? MorningOrderDate { get; set; }
|
||
|
|
public string? MorningFormulaName { get; set; }
|
||
|
|
|
||
|
|
public string? NoonPlanId { get; set; }
|
||
|
|
public string? NoonPlanType { get; set; }
|
||
|
|
public string? NoonOrderNo { get; set; }
|
||
|
|
public DateTime? NoonOrderDate { get; set; }
|
||
|
|
public string? NoonFormulaName { get; set; }
|
||
|
|
|
||
|
|
public string? NightPlanId { get; set; }
|
||
|
|
public string? NightPlanType { get; set; }
|
||
|
|
public string? NightOrderNo { get; set; }
|
||
|
|
public DateTime? NightOrderDate { get; set; }
|
||
|
|
public string? NightFormulaName { get; set; }
|
||
|
|
}
|