CollectModel.php 640 B

1234567891011121314151617181920
  1. <?php
  2. namespace common\expand\alipay\mini\model;
  3. use common\expand\alipay\AlipayModel;
  4. /**
  5. * @desc 收藏模型
  6. * @url https://opendocs.alipay.com/mini/03my1u
  7. * @property string $delivery_name 收藏引导活动名称
  8. * @property string $delivery_content 收藏引导文案内容,不得超过14个字
  9. * @property string $match_type 匹配类型:GLOBAL为全局生效,TARGETURL为目标页面生效,需配置相应页面地址
  10. * @property string $match_url 目标页面地址
  11. * @property string $start_time 目标页面地址
  12. * @property string $end_time 目标页面地址
  13. */
  14. class CollectModel extends AlipayModel
  15. {
  16. }