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