32 lines
921 B
Go
Executable File
32 lines
921 B
Go
Executable File
package gmodel
|
|
|
|
import (
|
|
"context"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type FsMapLibrary struct {
|
|
Id int64 `gorm:"primary_key" json:"id"` // Id
|
|
Title *string `gorm:"default:''" json:"title"` // 名称
|
|
Info *string `gorm:"default:''" json:"info"` // 贴图数据
|
|
Sort *int64 `gorm:"default:0" json:"sort"` // 排序
|
|
Status *int64 `gorm:"default:1" json:"status"` // 状态 1启用 0未启用
|
|
Ctime *int64 `gorm:"default:0" json:"ctime"` // 创建时间
|
|
TagId *int64 `gorm:"default:0" json:"tag_id"` // 模板标签id
|
|
}
|
|
type FsMapLibraryModel struct {
|
|
db *gorm.DB
|
|
}
|
|
|
|
func NewFsMapLibraryModel(db *gorm.DB) *FsMapLibraryModel {
|
|
return &FsMapLibraryModel{db}
|
|
}
|
|
|
|
func (ml *FsMapLibraryModel) GetAllEnabledList(ctx context.Context) (resp []FsMapLibrary, err error) {
|
|
err = ml.db.WithContext(ctx).Model(&FsMapLibrary{}).Where("`status` = ?", 1).Find(&resp).Error
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return
|
|
}
|