TaobaoTbkDgVegasSendReportRightsSendRelationRptDto.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability2474.Domain;
  5. public class TaobaoTbkDgVegasSendReportRightsSendRelationRptDto
  6. {
  7. /*
  8. 日期
  9. */
  10. private string? bizDate;
  11. /*
  12. 渠道关系id
  13. */
  14. private long? relationId;
  15. /*
  16. 红包发放数量
  17. */
  18. private long? fundNum;
  19. /*
  20. 渠道关系id关联的pid
  21. */
  22. private string? pid;
  23. /*
  24. 红包使用次数
  25. */
  26. private long? useNum;
  27. [JsonPropertyName("biz_date")]
  28. public string? BizDate
  29. {
  30. get => bizDate;
  31. set => this.bizDate = value;
  32. }
  33. [JsonPropertyName("relation_id")]
  34. public long? RelationId
  35. {
  36. get => relationId;
  37. set => this.relationId = value;
  38. }
  39. [JsonPropertyName("fund_num")]
  40. public long? FundNum
  41. {
  42. get => fundNum;
  43. set => this.fundNum = value;
  44. }
  45. [JsonPropertyName("pid")]
  46. public string? Pid
  47. {
  48. get => pid;
  49. set => this.pid = value;
  50. }
  51. [JsonPropertyName("use_num")]
  52. public long? UseNum
  53. {
  54. get => useNum;
  55. set => this.useNum = value;
  56. }
  57. }