using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class SendResultInfoDTO:JdObject{ [JsonProperty("code")] public string code { get; set; } [JsonProperty("message")] public string message { get; set; } [JsonProperty("orderId")] public string orderId { get; set; } [JsonProperty("deliveryId")] public string deliveryId { get; set; } } }