using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MisDataSaveDate.MOM { /// /// 物料转序 /// public class MaterialTransfer { /// /// 请求编号,每个请求都要一个唯一编号,同一个请求重复提交,使用同一编号 /// public string reqCode { get; set; } /// /// 请求时间截 格式: "yyyy-MM-dd HH:mm:ss" /// public string reqTime { get; set; } /// /// 令牌号, 由系统颁发 /// public string tokenCode { get; set; } /// /// 客户端编号,如PDA,HCWMS等 /// public string clientCode { get; set; } /// /// 任务模板编号 /// public string taskType { get; set; } /// /// 1:搬运容器,2;搬运货架,默认:2 /// public string moveTaskType { get; set; } /// /// 载具类型:0-空;1-满,搬运货架起点不是地码,搬运容器起点不是仓位时必填 /// 0:空料架;1:满料架 /// public string vehicleStatus { get; set; } /// /// 位置列表(默认第一个位置是起点,第二个位置是终点) /// public List positionCodeList { get; set; } /// /// 派工任务id /// public string dataid { get; set; } } /// /// 位置信息 /// public class PositionInfo { /// /// 00-地码(位置);05-仓位;04-区域 /// 00:工位;04:区域 /// public string type { get; set; } /// /// 根据type填值,具体的点位 /// public string positionCode { get; set; } } }