1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Created by PhpStorm.
- * User: z-yang
- * Date: 2020/12/24
- * Time: 17:04
- */
- namespace App\Modules\Channel\Services;
- class ReportToChannelUserAndOrderService
- {
- public static $user_type = 'user';
- public static $order_type = 'user';
- const SUCCESS = 'success';
- public static function getReportUrl($distribution_channel_id,$type){
- return '';
- }
- public static function createUserErrorRecord($uid,$distribution_channel_id,$register_ip,$user_agent,$user_created_at){
- }
- }
|