ReportToChannelUserAndOrderService.php 520 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: z-yang
  5. * Date: 2020/12/24
  6. * Time: 17:04
  7. */
  8. namespace App\Modules\Channel\Services;
  9. class ReportToChannelUserAndOrderService
  10. {
  11. public static $user_type = 'user';
  12. public static $order_type = 'user';
  13. const SUCCESS = 'success';
  14. public static function getReportUrl($distribution_channel_id,$type){
  15. return '';
  16. }
  17. public static function createUserErrorRecord($uid,$distribution_channel_id,$register_ip,$user_agent,$user_created_at){
  18. }
  19. }