- 添加个人客户微信登录和手机验证码登录接口 - 实现个人客户设备、ICCID、手机号关联管理 - 添加短信发送服务(HTTP 客户端) - 添加微信认证服务(含 mock 实现) - 添加 JWT Token 生成和验证工具 - 创建数据库迁移脚本(personal_customer 关联表) - 修复测试文件中的路由注册参数错误 - 重构 scripts 目录结构(分离独立脚本到子目录) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
33 lines
1.2 KiB
Go
33 lines
1.2 KiB
Go
package bootstrap
|
|
|
|
import (
|
|
"github.com/break/junhong_cmp_fiber/internal/store/postgres"
|
|
)
|
|
|
|
// stores 封装所有 Store 实例
|
|
// 注意:此结构体不导出,仅在 bootstrap 包内部使用
|
|
type stores struct {
|
|
Account *postgres.AccountStore
|
|
Role *postgres.RoleStore
|
|
Permission *postgres.PermissionStore
|
|
AccountRole *postgres.AccountRoleStore
|
|
RolePermission *postgres.RolePermissionStore
|
|
PersonalCustomer *postgres.PersonalCustomerStore
|
|
PersonalCustomerPhone *postgres.PersonalCustomerPhoneStore
|
|
// TODO: 新增 Store 在此添加字段
|
|
}
|
|
|
|
// initStores 初始化所有 Store 实例
|
|
func initStores(deps *Dependencies) *stores {
|
|
return &stores{
|
|
Account: postgres.NewAccountStore(deps.DB, deps.Redis),
|
|
Role: postgres.NewRoleStore(deps.DB),
|
|
Permission: postgres.NewPermissionStore(deps.DB),
|
|
AccountRole: postgres.NewAccountRoleStore(deps.DB),
|
|
RolePermission: postgres.NewRolePermissionStore(deps.DB),
|
|
PersonalCustomer: postgres.NewPersonalCustomerStore(deps.DB, deps.Redis),
|
|
PersonalCustomerPhone: postgres.NewPersonalCustomerPhoneStore(deps.DB),
|
|
// TODO: 新增 Store 在此初始化
|
|
}
|
|
}
|