using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Entitys.External
{
///
/// AMS返回任务结果实体
///
public class AmsReturnResultEntity
{
///
///
///
public bool success { set; get; }
///
///
///
public string errCode { set; get; }
///
///
///
public string errMsg { set; get; }
///
///
///
public List failedList { set; get; }
}
public class FailedList
{
///
///
///
public string taskNo { set; get; }
///
///
///
public string errCode { set; get; }
///
///
///
public string errMsg { set; get; }
}
}