first commit
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
using JSMachine.WMS.App.Dto;
|
||||
using JSMachine.WMS.Common.Enum;
|
||||
|
||||
namespace JSMachine.WMS.Common.Cache.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产订单缓存
|
||||
/// </summary>
|
||||
public class ProductionOrderCacheModel
|
||||
{
|
||||
#region 订单基础信息
|
||||
/// <summary>
|
||||
/// 订单编号
|
||||
/// </summary>
|
||||
public string OrderNo { get; set; }
|
||||
/// <summary>
|
||||
/// 添加缓存时间
|
||||
/// </summary>
|
||||
public DateTime AddTime { get; set; }
|
||||
/// <summary>
|
||||
/// 换单时间(发送换单命令时刻)
|
||||
/// </summary>
|
||||
public DateTime? ChangeOrderTime { get; set; }
|
||||
/// <summary>
|
||||
/// 已生产持续时间(秒)
|
||||
/// </summary>
|
||||
public int? DurationOfProduction { get; set; }
|
||||
/// <summary>
|
||||
/// 第一个良品数产生时间(换单准备时间=第一个良品数产生时间-开始换单时间)
|
||||
/// </summary>
|
||||
public DateTime? FirstGoodProductTime { get; set; }
|
||||
/// <summary>
|
||||
/// 结束时间(结束生产)
|
||||
/// </summary>
|
||||
public DateTime? FinishedTime { get; set; }
|
||||
/// <summary>
|
||||
/// 实际生产数量
|
||||
/// </summary>
|
||||
public int ProductionNum { get; set; }
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user