using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class ShipPackageJosDto:JdObject{ [JsonProperty("update_time")] public string updateTime { get; set; } [JsonProperty("ship_code")] public string shipCode { get; set; } [JsonProperty("package_status")] public int packageStatus { get; set; } [JsonProperty("create_time")] public string createTime { get; set; } [JsonProperty("ware_num")] public int wareNum { get; set; } [JsonProperty("sum_package_price")] public string sumPackagePrice { get; set; } [JsonProperty("org_name")] public string orgName { get; set; } [JsonProperty("store_name")] public string storeName { get; set; } [JsonProperty("provider_code")] public string providerCode { get; set; } [JsonProperty("receive_name")] public string receiveName { get; set; } [JsonProperty("receive_address")] public string receiveAddress { get; set; } [JsonProperty("contact_name")] public string contactName { get; set; } [JsonProperty("contact_tel")] public string contactTel { get; set; } [JsonProperty("sign_time")] public string signTime { get; set; } [JsonProperty("confirm_receipt_people")] public string confirmReceiptPeople { get; set; } [JsonProperty("package_Id")] public long packageId { get; set; } } }