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.
31 lines
747 B
C#
31 lines
747 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Mesnac.Action.Feeding.FinishBatch
|
|
{
|
|
/// <summary>
|
|
/// 计划执行数据类
|
|
/// </summary>
|
|
public class PlanExecuteData
|
|
{
|
|
/// <summary>
|
|
/// 计划编号
|
|
/// </summary>
|
|
public string PlanID { get; set; }
|
|
/// <summary>
|
|
/// 当前计划车数
|
|
/// </summary>
|
|
public int RecipeSetNumber { get; set; }
|
|
/// <summary>
|
|
/// 计划完成数量
|
|
/// </summary>
|
|
public int MixingFinishedCount { get; set; }
|
|
/// <summary>
|
|
/// 密炼开始时间
|
|
/// </summary>
|
|
public DateTime MixingStartTime { get; set; }
|
|
}
|
|
}
|