go项目脚手架
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sorbet/internal/repositories/system_role.go

18 lines
387 B

package repositories
import (
"gorm.io/gorm"
"sorbet/internal/entities"
"sorbet/pkg/db"
)
type SystemRoleRepository struct {
*db.Repository[entities.SystemRole]
}
// NewSystemRoleRepository 创建系统用户角色仓库
func NewSystemRoleRepository(orm *gorm.DB) *SystemRoleRepository {
return &SystemRoleRepository{
db.NewRepositoryWith[entities.SystemRole](orm, "id"),
}
}