using Kean.Domain.Task.Enums;
using System;
namespace Kean.Domain.Task.Models
{
///
/// 任务
///
public class Task
{
///
/// 标识
///
public int Id { get; set; }
///
/// 任务类型
///
public TaskType Type { get; set; }
///
/// 托盘条码
///
public string Barcode { get; set; }
///
/// 负载规格
///
public Spec Spec { get; set; }
///
/// 操作位置
///
public int Original { get; set; }
///
/// 目标位置
///
public int Destination { get; set; }
///
/// 优先级
///
public int? Priority { get; set; }
///
/// 操作者
///
public int Operator { get; set; }
///
/// 任务标签
///
public string Tag { get; set; }
///
/// 前续连接
///
public int? Previous { get; set; }
///
/// 时间戳
///
public DateTime Timestamp { get; set; }
/////////////////////////////////////////////////////
///
/// 库房
///
public int Warehouse
{
get; set;
}
///
/// 申请编号
///
public string RequestNo
{
get; set;
}
///
/// 中转点
///
public int TransitPlace
{
get; set;
}
///
/// 任务状态
///
public string ManageStatus
{
get; set;
}
}
}