123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * 淘客定向招商活动基本信息
- * @author auto create
- */
- class TbkEvent
- {
-
- /**
- * 定向招商活动结束开始时间
- **/
- public $end_time;
-
- /**
- * 淘宝联盟定向招商活动id
- **/
- public $event_id;
-
- /**
- * 淘宝联盟定向招商活动名称
- **/
- public $event_title;
-
- /**
- * 定向招商活动结束开始时间
- **/
- public $start_time;
- }
- ?>
|