DiscountResponse.cs 980 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Dfs.WayneChina.IPosPlus.ServiceClient
  6. {
  7. public class DiscountResponse
  8. {
  9. [JsonProperty("cardNo")]
  10. public string CardNo { get; set; }
  11. [JsonProperty("cardType")]
  12. public byte CardType { get; set; }
  13. [JsonProperty("fillingAmount")]
  14. public decimal FillingAmount { get; set; }
  15. [JsonProperty("unitPrice")]
  16. public decimal UnitPrice { get; set; }
  17. [JsonProperty("priceAfterDiscount")]
  18. public decimal PriceAfterDiscount { get; set; }
  19. [JsonProperty("fuelNo")]
  20. public string FuelNo { get; set; }
  21. [JsonProperty("discountAmount")]
  22. public decimal DiscountAmount { get; set; }
  23. [JsonProperty("payAmount")]
  24. public decimal PayAmount { get; set; }
  25. [JsonProperty("promoDescription")]
  26. public Promotion PromoDescription { get; set; }
  27. }
  28. }