call(DepWebsiteSeeder::class); // 站点管理 $this->call(DepConnectDBSeeder::class); // 数据库管理 sqlite mysql pgsql sqlsrv tidb $this->call(AdminRoleSeeder::class); // 管理员角色 $this->call(AdminSeeder::class); // 管理员账号 $this->call(AdminAccessTokenSeeder::class); // 用户登录token $this->call(AdminAccountSeeder::class); // 账号,手机号,邮箱和密码登录 $this->call(AdminWechatOfficialAccountSeeder::class); // 微信公众号 $this->call(AdminRouterGroupSeeder::class); // 后端路由管理 $this->call(AdminRouterSeeder::class); // 后端路由管理 $this->call(ProductCategorySeeder::class); // 产品分类 $this->call(ProductSeeder::class); // 产品表 $this->call(ProductVersionSeeder::class); // 产品版本表 $this->call(ProductComboSeeder::class); // 套餐产品表 $this->call(OrderProductSeeder::class); // 订单表 $this->call(OrderComboSeeder::class); // 套餐订单表 $this->call(OrderProfitRecordSeeder::class); // 订单分润记录表 $this->call(BaiduPanTokenSeeder::class); // 百度网盘授权信息 $this->call(SeoKeywordsSeeder::class); // SEO关键词 $this->call(SeoKeywordsRecordSeeder::class); // SEO关键词发布记录 // 资讯 $this->call(NewsCategorySeeder::class); $this->call(NewsListSeeder::class); // 广告 $this->call(PositionGroupSeeder::class); $this->call(PositionListSeeder::class); // 媒体 $this->call(MediaGroupSeeder::class); $this->call(MediaListSeeder::class); // 通用的资讯 $this->call(WebNewsCategorySeeder::class); $this->call(WebNewsListSeeder::class); // 通用的广告 $this->call(WebPositionGroupSeeder::class); $this->call(WebPositionListSeeder::class); ######################################## // 前台用户 $this->call(UserRoleSeeder::class); // 管理员角色 $this->call(UserSeeder::class); // 管理员账号 $this->call(UserAccessTokenSeeder::class); // 用户登录token $this->call(UserAccountSeeder::class); // 账号,手机号,邮箱和密码登录 $this->call(UserMobileSmsSeeder::class); // 手机验证码 $this->call(UserWechatAppSeeder::class); // 手机APP微信登录 $this->call(UserWechatMiniProgramSeeder::class); // 微信小程序 $this->call(UserWechatOfficialAccountSeeder::class); // 微信公众号 $this->call(UserBuyBillSeeder::class); // 微信公众号 $this->call(UserFapiaoSeeder::class); // 微信公众号 $this->call(UserFeedbackSeeder::class); // 微信公众号 $this->call(UserUseLogSeeder::class); // 微信公众号 ######################################## // 代理商 $this->call(AgentSeeder::class); // 代理商主表 $this->call(AgentAccessTokenSeeder::class); // 用户登录token $this->call(AgentAccountSeeder::class); // 代理商账号密码登录表 $this->call(AgentMobileSmsSeeder::class); // 代理商手机号短信登录表 $this->call(AgentWechatMiniProgramSeeder::class); // 代理商微信小程序登录表 $this->call(AgentProductSeeder::class); // 代理商产品关联表 ######################################## $this->call(DepInterTempCategorySeeder::class); // 接口模板分类 $this->call(DepInterTempSeeder::class); // 接口模板信息 $this->call(DepInterfaceSeeder::class); // 接口信息 } }