TaobaoTbkDgGeneralLinkConvertMaterialMultiCouponPromotionInfoDTO.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Defaultability.Domain;
  5. public class TaobaoTbkDgGeneralLinkConvertMaterialMultiCouponPromotionInfoDTO
  6. {
  7. /*
  8. 优惠名称
  9. */
  10. private string? couponTitle;
  11. /*
  12. 优惠券信息,满XX元减XX元,满x件减y元
  13. */
  14. private string? couponDesc;
  15. /*
  16. 优惠金额(元)
  17. */
  18. private string? coupoonFee;
  19. /*
  20. 优惠开始时间
  21. */
  22. private string? couponStartTime;
  23. /*
  24. 优惠结束时间
  25. */
  26. private string? couponEndTime;
  27. /*
  28. 优惠ID
  29. */
  30. private string? activityId;
  31. /*
  32. 优惠剩余数量
  33. */
  34. private long? couponRemainCount;
  35. [JsonPropertyName("coupon_title")]
  36. public string? CouponTitle
  37. {
  38. get => couponTitle;
  39. set => this.couponTitle = value;
  40. }
  41. [JsonPropertyName("coupon_desc")]
  42. public string? CouponDesc
  43. {
  44. get => couponDesc;
  45. set => this.couponDesc = value;
  46. }
  47. [JsonPropertyName("coupoon_fee")]
  48. public string? CoupoonFee
  49. {
  50. get => coupoonFee;
  51. set => this.coupoonFee = value;
  52. }
  53. [JsonPropertyName("coupon_start_time")]
  54. public string? CouponStartTime
  55. {
  56. get => couponStartTime;
  57. set => this.couponStartTime = value;
  58. }
  59. [JsonPropertyName("coupon_end_time")]
  60. public string? CouponEndTime
  61. {
  62. get => couponEndTime;
  63. set => this.couponEndTime = value;
  64. }
  65. [JsonPropertyName("activity_id")]
  66. public string? ActivityId
  67. {
  68. get => activityId;
  69. set => this.activityId = value;
  70. }
  71. [JsonPropertyName("coupon_remain_count")]
  72. public long? CouponRemainCount
  73. {
  74. get => couponRemainCount;
  75. set => this.couponRemainCount = value;
  76. }
  77. }