TaobaoTbkDgMaterialRecommendTopNInfoDTO.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Defaultability.Domain;
  5. public class TaobaoTbkDgMaterialRecommendTopNInfoDTO
  6. {
  7. /*
  8. 前N件剩余库存
  9. */
  10. private long? topnQuantity;
  11. /*
  12. 前N件初始总库存
  13. */
  14. private long? topnTotalCount;
  15. /*
  16. 前N件佣金开始时间
  17. */
  18. private string? topnStartTime;
  19. /*
  20. 前N件佣金结束时间
  21. */
  22. private string? topnEndTime;
  23. /*
  24. 前N件佣金率
  25. */
  26. private string? topnRate;
  27. [JsonPropertyName("topn_quantity")]
  28. public long? TopnQuantity
  29. {
  30. get => topnQuantity;
  31. set => this.topnQuantity = value;
  32. }
  33. [JsonPropertyName("topn_total_count")]
  34. public long? TopnTotalCount
  35. {
  36. get => topnTotalCount;
  37. set => this.topnTotalCount = value;
  38. }
  39. [JsonPropertyName("topn_start_time")]
  40. public string? TopnStartTime
  41. {
  42. get => topnStartTime;
  43. set => this.topnStartTime = value;
  44. }
  45. [JsonPropertyName("topn_end_time")]
  46. public string? TopnEndTime
  47. {
  48. get => topnEndTime;
  49. set => this.topnEndTime = value;
  50. }
  51. [JsonPropertyName("topn_rate")]
  52. public string? TopnRate
  53. {
  54. get => topnRate;
  55. set => this.topnRate = value;
  56. }
  57. }