using System.Windows.Forms;
namespace HH.WCS.Mobox3.RiDong.dto;
///
/// 作业模型
///
public class OperationDto
{
///
/// 容器编码
///
public string cntrCode { get; set; }
///
/// 起点
///
public string startLocation { get; set; } = "RKK-1";
///
/// 终点
///
public string endLocation { get; set; } = "CKK-1";
///
/// 任务类型(1:常规入库,2:常规出库,3:盘点入库,4:盘点出库,5:指引出库,6:紧急出库,7:空托出库)
///
public int taskType { get; set; }
///
/// 单号
///
public string odd { get; set; }
}