MorePromotionMapData.php 741 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * 更多活动优惠
  4. * @author auto create
  5. */
  6. class MorePromotionMapData
  7. {
  8. /**
  9. * 预热优惠利益点文案,如“1件7.92折”、“每200减20”等
  10. **/
  11. public $promotion_desc;
  12. /**
  13. * 优惠结束时间
  14. **/
  15. public $promotion_end_time;
  16. /**
  17. * 优惠ID
  18. **/
  19. public $promotion_id;
  20. /**
  21. * 优惠开始时间
  22. **/
  23. public $promotion_start_time;
  24. /**
  25. * 预热优惠名称,如“商品券”、“跨店满减”、“单品直降”等
  26. **/
  27. public $promotion_title;
  28. /**
  29. * 当天优惠总库存【指定优惠透出,不对外开放】
  30. **/
  31. public $promotion_total_count;
  32. /**
  33. * 优惠使用路径【指定优惠透出,不对外开放】
  34. **/
  35. public $promotion_url;
  36. }
  37. ?>