26 lines
639 B
PHP
26 lines
639 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use App\Models\ShopAuth;
|
|
use Carbon\Carbon;
|
|
|
|
class ShopAuthSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
ShopAuth::create([
|
|
'shop_name' => '测试淘宝店铺',
|
|
'platform' => 'taobao',
|
|
'account' => 'test_taobao_account',
|
|
'access_token' => 'dummy_access_token_here',
|
|
'refresh_token' => null,
|
|
'expires_at' => Carbon::now()->addDays(7),
|
|
'status' => 'valid',
|
|
'remark' => '测试用店铺',
|
|
]);
|
|
|
|
// 可以继续添加其他平台店铺...
|
|
}
|
|
} |