using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Permissions;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Entitys.Entitys.Mes
{
///
/// 移送任务日志 Transport invitation log
///
[Table("AGV_Transport_Request_log")]
public class AGV_Transport_Request_log
{
///
/// 唯一号 GUID
///
[Column("TaskId")]
public string TaskId { get; set; }
///
/// 任务号task number
///
[Column("TaskNo")]
public string TaskNo { get; set; }
///
/// 请求类型 RequestType
///
[Column("RequestType")]
public int RequestType { get; set; }
///
/// 工装具号 tool number (Load Id)
///
[Column("LoadNo")]
public string LoadNo { get; set; }
///
/// 工装类型 Load type
///
[Column("LoadType")]
public string LoadType { get; set; }
///
/// 任务优先级 Task priority
///
[Column("TaskPriority")]
public int TaskPriority { get; set; }
///
/// 运送状态transport status
///
[Column("TransportStatus")]
public int TransportStatus { get; set; }
///
/// 起始位置Start location
///
[Column("StartLocation")]
public string StartLocation { get; set; }
///
/// 终点位置End location
///
[Column("EndLocation")]
public string EndLocation { get; set; }
///
/// 时间戳Time Stamp
///
[Column("TimeStamp")]
public DateTime? TimeStamp { get; set; }
///
/// 创建时间creation time
///
[Column("CreateDate")]
public DateTime? CreateDate { get; set; }
///
/// 是否接收receive or not
///
[Column("HasBeenReceived")]
public string HasBeenReceived { get; set; }
}
}