using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Ams { [Name("ams返回结果")] public class AmsResponse { public bool success { get; set; } public string errCode { get; set; } public string errMsg { get; set; } public List failList { set; get; } } public class FailedList { /// /// /// public string taskNo { set; get; } /// /// /// public string errCode { set; get; } /// /// /// public string errMsg { set; get; } } }