using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class AfsServiceMessage:JdObject{ [JsonProperty("afsServiceId")] public int afsServiceId { get; set; } [JsonProperty("afsApplyId")] public int afsApplyId { get; set; } [JsonProperty("afsCategoryId")] public int afsCategoryId { get; set; } [JsonProperty("orderId")] public long orderId { get; set; } [JsonProperty("wareId")] public int wareId { get; set; } [JsonProperty("wareName")] public string wareName { get; set; } [JsonProperty("customerName")] public string customerName { get; set; } [JsonProperty("customerMobilePhone")] public string customerMobilePhone { get; set; } [JsonProperty("approveName")] public string approveName { get; set; } [JsonProperty("afsApplyTime")] public DateTime afsApplyTime { get; set; } [JsonProperty("approvedDate")] public DateTime approvedDate { get; set; } } }