using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class MachiningDestDetail:JdObject{ [JsonProperty("destOwnerNo")] public string destOwnerNo { get; set; } [JsonProperty("destSkuNo")] public string destSkuNo { get; set; } [JsonProperty("destProductLevel")] public string destProductLevel { get; set; } [JsonProperty("destQty")] public string destQty { get; set; } } }