using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.WMS
{
///
/// 移库数据反馈(WCS移库数据回传)
///
public class WMSMoveLocationFeedback
{
///
/// 任务号
///
public string taskCode { get; set; }
///
/// 容器编码
///
public string containerCode { get; set; }
///
/// 起点位置
///
public string fromStationCode { get; set; }
///
/// 原始分配的终点位置
///
public string orgLocationCode { get; set; }
///
/// 目标实际终点位置
///
public string toLocationCode { get; set; }
///
/// 变更位置的时间
///
public string alterLocationTime { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
}
}