using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Service.Entity
{
    /// 
    /// 更新任务进程响应实体
    /// 
    public class I_WCS_PutTaskStepResponse : WcsContractApiResponse
    {
        /// 
        /// 结果
        /// 
        public bool ResType { get; set; }
        /// 
        /// 消息
        /// 
        public string ResMessage { get; set; }
        /// 
        /// WMS任务号
        /// 
        public string WMSTaskNum { get; set; } = "0";
        /// 
        /// 备用
        /// 
        public string Memo1 { get; set; }
        /// 
        /// 备用
        /// 
        public string Memo2 { get; set; }
        /// 
        /// 备用
        /// 
        public string Memo3 { get; set; }
    }
}