using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class ReceiptModelDto:JdObject{ [JsonProperty("receiptNo")] public string receiptNo { get; set; } [JsonProperty("ownerNo")] public string ownerNo { get; set; } [JsonProperty("supplierNo")] public string supplierNo { get; set; } [JsonProperty("status")] public int status { get; set; } [JsonProperty("detailModelDtos")] public List detailModelDtos { get; set; } } }