12345678910111213141516171819202122232425262728293031323334 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.IPosPlus.ServiceClient
- {
- /// <summary>
- /// Represents an online discount calculation request.
- /// </summary>
- public class DiscountRequest
- {
- [JsonProperty("cardNo")]
- public string CardNo { get; set; }
- [JsonProperty("fillingAmount")]
- public decimal FillingAmount { get; set; }
- [JsonProperty("volume")]
- public decimal Volume { get; set; }
- [JsonProperty("unitPrice")]
- public decimal UnitPrice { get; set; }
- [JsonProperty("cardType")]
- public int CardType { get; set; }
- [JsonProperty("timeStamp")]
- public DateTime TimeStamp { get; set; }
- [JsonProperty("barcode")]
- public string Barcode { get; set; }
- }
- }
|