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 PickInput
{
///
/// 管段编码
///
public string PipeSpecCode { get; set; }
///
/// 分拣托盘号
///
public string ContinerNo { get; set; }
///
/// 库位号
///
public string PlaceNo { get; set; }
}
}