using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class PackagePrintResult:JdObject{ [JsonProperty("operateTime")] public DateTime operateTime { get; set; } [JsonProperty("pdfUrl")] public string pdfUrl { get; set; } } }