using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.response.cp
{
    public class WcsMoveTaskResponse
    {
        /// 
        /// 0:失败;1:允许2升位执行;2:执行移库任务;3:一深位有出库任务
        /// 
        public int ResType { get; set; } = 0;
        /// 
        /// 一深位货位号
        /// 
        public string CellNo { get; set; }
    }
}