ReportedLostCard.cs 810 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Newtonsoft.Json;
  5. namespace Dfs.WayneChina.SpsDataCourier.Models
  6. {
  7. public class ReportedLostCard
  8. {
  9. [JsonProperty("gid")]
  10. public long Gid { get; set; }
  11. [JsonProperty("cardNo")]
  12. public string CardNo { get; set; }
  13. [JsonProperty("operType")]
  14. public byte OperType { get; set; }
  15. [JsonProperty("operNo")]
  16. public string OperNo { get; set; }
  17. [JsonProperty("sNo")]
  18. public ushort SNo { get; set; }
  19. [JsonProperty("lossTime")]
  20. public string LossTime { get; set; }
  21. [JsonProperty("reason")]
  22. public string Reason { get; set; }
  23. [JsonProperty("operationType")]
  24. public byte OperationType { get; set; }
  25. }
  26. }