FutureActivityPromotionPathMapData.php 579 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * 预热到手价优惠路径列表
  4. * @author auto create
  5. */
  6. class FutureActivityPromotionPathMapData
  7. {
  8. /**
  9. * 预热优惠利益点文案,如“1件7.92折”、“每200减20”等
  10. **/
  11. public $promotion_desc;
  12. /**
  13. * 优惠结束时间
  14. **/
  15. public $promotion_end_time;
  16. /**
  17. * 预热实际优惠金额(元)
  18. **/
  19. public $promotion_fee;
  20. /**
  21. * 优惠开始时间
  22. **/
  23. public $promotion_start_time;
  24. /**
  25. * 预热优惠名称,如“商品券”、“跨店满减”、“单品直降”等
  26. **/
  27. public $promotion_title;
  28. }
  29. ?>