BlackCardInfo.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 BlackCardInfo
  8. {
  9. [JsonProperty("gid")]
  10. public long Gid { get; set; }
  11. [JsonProperty("cardNo")]
  12. public string CardNo { get; set; }
  13. [JsonProperty("blackDate")]
  14. public string BlackDate { get; set; }
  15. [JsonProperty("acctGid")]
  16. public long AcctGid { get; set; }
  17. [JsonProperty("acctId")]
  18. public string AcctId { get; set; }
  19. [JsonProperty("cardType")]
  20. public byte CardType { get; set; }
  21. [JsonProperty("discountNo")]
  22. public int DiscountNo { get; set; }
  23. [JsonProperty("reason")]
  24. public string Reason { get; set; }
  25. [JsonProperty("uploadFlag")]
  26. public byte UploadFlag { get; set; }
  27. /// <summary>
  28. /// Type of the black list record, 0=create, 1=update, 2=delete
  29. /// </summary>
  30. [JsonProperty("operationType")]
  31. public byte OperationType { get; set; }
  32. /// <summary>
  33. /// Type of black list card info origin, 0=t_blackcard, 1=t_addblackcard, 2=t_delblackcard
  34. /// </summary>
  35. [JsonProperty("blackType")]
  36. public byte BlackType { get; set; }
  37. }
  38. }