CardOperationInfo.cs 525 B

12345678910111213141516171819202122
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Dfs.WayneChina.SpsDataCourier.Models
  6. {
  7. public class CardOperationInfo
  8. {
  9. [JsonProperty("cardNo")]
  10. public string CardNo { get; set; }
  11. [JsonProperty("accountId")]
  12. public string AccountId { get; set; }
  13. [JsonProperty("timeStamp")]
  14. public string TimeStamp { get; set; }
  15. [JsonProperty("operationType")]
  16. public ushort OperationType { get; set; }
  17. }
  18. }