using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.WMS { /// /// WMS返回结果 /// public class WMSReturn { /// /// 成功:200,其他表示异常。 /// public int code { get; set; } /// /// 响应消息:success-成功,异常返回详细错误原因 /// public string message { get; set; } /// /// TRUE /// public bool success { get; set; } /// /// 成功 /// public object result { get; set; } /// /// 时间戳 /// public long timestamp { get; set; } /// /// 响应数据,固定为空 /// public object data { get; set; } } public class Exists { /// /// 是否在途 /// public bool taskExists { get; set; } /// /// 异常地址 /// public string errorAreaCode { get; set; } } }