using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class RecyclerSettle:JdObject{ [JsonProperty("createDate")] public DateTime createDate { get; set; } [JsonProperty("remark")] public string remark { get; set; } [JsonProperty("settleNo")] public string settleNo { get; set; } [JsonProperty("stat")] public int stat { get; set; } [JsonProperty("opstatus")] public int opstatus { get; set; } [JsonProperty("serviceTypeId")] public int serviceTypeId { get; set; } [JsonProperty("serviceTypeName")] public string serviceTypeName { get; set; } [JsonProperty("settleAmount")] public double settleAmount { get; set; } [JsonProperty("adjustAdmount")] public double adjustAdmount { get; set; } [JsonProperty("adjustRemark")] public string adjustRemark { get; set; } [JsonProperty("recyclerId")] public int recyclerId { get; set; } [JsonProperty("recyclerName")] public string recyclerName { get; set; } [JsonProperty("payAmount")] public double payAmount { get; set; } [JsonProperty("firstLevelCatId")] public int firstLevelCatId { get; set; } [JsonProperty("firstLevelCat")] public string firstLevelCat { get; set; } [JsonProperty("secondLevelCatId")] public int secondLevelCatId { get; set; } [JsonProperty("secondLevelCat")] public string secondLevelCat { get; set; } [JsonProperty("thirdLevelCatId")] public int thirdLevelCatId { get; set; } [JsonProperty("thirdLevelCat")] public string thirdLevelCat { get; set; } } }