using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CMS.Plugin.PipeLineLems.Application.Contracts.Dtos.WorkPlan
{
///
/// 分拣输出参数模型
///
[Serializable]
public class PickOutput
{
public WorkPlanDto WorkPlan { get; set; }
///
/// 分拣托盘号
///
public string ContinerNo { get; set; }
///
/// 库位号
///
public string PlaceNo { get; set; }
}
}