fusenapi/model/gmodel/fs_map_library_logic.go

28 lines
965 B
Go
Raw Normal View History

2023-06-16 06:52:45 +00:00
package gmodel
import "context"
2023-06-20 11:56:18 +00:00
func (ml *FsMapLibraryModel) GetAllEnabledList(ctx context.Context, fields ...string) (resp []FsMapLibrary, err error) {
2023-06-20 06:59:13 +00:00
db := ml.db.WithContext(ctx).Model(&FsMapLibrary{}).Where("`status` = ?", 1)
2023-06-20 11:56:18 +00:00
if len(fields) != 0 {
db = db.Select(fields[0])
2023-06-20 03:52:26 +00:00
}
err = db.Find(&resp).Error
2023-06-16 06:52:45 +00:00
if err != nil {
return nil, err
}
return
}
2023-06-20 03:52:26 +00:00
func (ml *FsMapLibraryModel) Create(ctx context.Context, data *FsMapLibrary) error {
2023-06-20 06:59:13 +00:00
return ml.db.WithContext(ctx).Model(&FsMapLibrary{}).Create(data).Error
2023-06-20 03:52:26 +00:00
}
func (ml *FsMapLibraryModel) Update(ctx context.Context, id int64, data *FsMapLibrary) error {
2023-06-20 06:59:13 +00:00
return ml.db.WithContext(ctx).Model(&FsMapLibrary{}).Where("`id` = ? ", id).Updates(data).Error
2023-06-20 03:52:26 +00:00
}
func (ml *FsMapLibraryModel) ChangeStatusByIds(ctx context.Context, ids []int64, status int64) error {
if len(ids) == 0 {
return nil
}
2023-06-20 06:59:13 +00:00
return ml.db.WithContext(ctx).Model(&FsMapLibrary{}).Where("`id` in (?) ", ids).Update("status", 0).Error
2023-06-20 03:52:26 +00:00
}