|
@@ -63,6 +63,14 @@ class Downloads extends Command
|
|
$filePath = $fileDir .$download->username.'内容-'.Carbon::now()->format('Y-m-d') .'_' .uniqid() .'.csv';
|
|
$filePath = $fileDir .$download->username.'内容-'.Carbon::now()->format('Y-m-d') .'_' .uniqid() .'.csv';
|
|
}elseif($download->download_type == 'post_waste'){
|
|
}elseif($download->download_type == 'post_waste'){
|
|
$filePath = $fileDir .$download->username.'回收站内容-'.Carbon::now()->format('Y-m-d') .'_' .uniqid() .'.csv';
|
|
$filePath = $fileDir .$download->username.'回收站内容-'.Carbon::now()->format('Y-m-d') .'_' .uniqid() .'.csv';
|
|
|
|
+ }elseif($download->download_type == 'registered_record'){
|
|
|
|
+ $filePath = $fileDir .$download->username.'新用户注册账本-'.Carbon::now()->format('Y-m-d') .'_' .uniqid() .'.csv';
|
|
|
|
+ }elseif($download->download_type == 'comment_record'){
|
|
|
|
+ $filePath = $fileDir .$download->username.'评论账本-'.Carbon::now()->format('Y-m-d') .'_' .uniqid() .'.csv';
|
|
|
|
+ }elseif($download->download_type == 'release_record'){
|
|
|
|
+ $filePath = $fileDir .$download->username.'发布账本-'.Carbon::now()->format('Y-m-d') .'_' .uniqid() .'.csv';
|
|
|
|
+ }elseif($download->download_type == 'general_record'){
|
|
|
|
+ $filePath = $fileDir .$download->username.'唯一/普通行为账本-'.Carbon::now()->format('Y-m-d') .'_' .uniqid() .'.csv';
|
|
}else{
|
|
}else{
|
|
exit;
|
|
exit;
|
|
}
|
|
}
|