mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-25 19:49:14 +08:00
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
package repo
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/backend/app/model"
|
|
"gorm.io/gorm/clause"
|
|
)
|
|
|
|
type WebSiteGroupRepo struct {
|
|
}
|
|
|
|
func (w WebSiteGroupRepo) Page(page, size int, opts ...DBOption) (int64, []model.WebSiteGroup, error) {
|
|
var groups []model.WebSiteGroup
|
|
db := getDb(opts...).Model(&model.WebSiteGroup{})
|
|
count := int64(0)
|
|
db = db.Count(&count)
|
|
err := db.Debug().Limit(size).Offset(size * (page - 1)).Find(&groups).Error
|
|
return count, groups, err
|
|
}
|
|
|
|
func (w WebSiteGroupRepo) GetBy(opts ...DBOption) ([]model.WebSiteGroup, error) {
|
|
var groups []model.WebSiteGroup
|
|
db := getDb(opts...).Model(&model.WebSiteGroup{})
|
|
if err := db.Find(&groups).Error; err != nil {
|
|
return groups, err
|
|
}
|
|
return groups, nil
|
|
}
|
|
|
|
func (w WebSiteGroupRepo) Create(app *model.WebSiteGroup) error {
|
|
return getDb().Omit(clause.Associations).Create(app).Error
|
|
}
|
|
|
|
func (w WebSiteGroupRepo) Save(app *model.WebSiteGroup) error {
|
|
return getDb().Omit(clause.Associations).Save(app).Error
|
|
}
|
|
|
|
func (w WebSiteGroupRepo) DeleteBy(opts ...DBOption) error {
|
|
return getDb(opts...).Delete(&model.WebSiteGroup{}).Error
|
|
}
|