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.
18 lines
374 B
18 lines
374 B
package repositories
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
"sorbet/internal/entities"
|
|
"sorbet/pkg/db"
|
|
)
|
|
|
|
type SystemLogRepository struct {
|
|
*db.Repository[entities.SystemLog]
|
|
}
|
|
|
|
// NewSystemLogRepository 创建系统日志仓库
|
|
func NewSystemLogRepository(orm *gorm.DB) *SystemLogRepository {
|
|
return &SystemLogRepository{
|
|
db.NewRepositoryWith[entities.SystemLog](orm, "id"),
|
|
}
|
|
}
|
|
|