fusenapi/model/gmodel/fsfaqmodel.go
laodaming b1393950f2 fix
2023-06-12 16:47:48 +08:00

25 lines
775 B
Go
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package gmodel
import (
"database/sql"
"gorm.io/gorm"
)
type FsFaq struct {
Id int64 `gorm:"primary_key" json:"id"`
TagId *int64 `gorm:"default:0" json:"tag_id"` // 分类ID
TagName *string `gorm:"default:''" json:"tag_name"` // 分类名称
Title *string `gorm:"default:''" json:"title"` // 标题
Content *string `gorm:"default:''" json:"content"` // 内容
Status *int64 `gorm:"default:1" json:"status"` // 状态(0:禁用1:启用)
Sort *int64 `gorm:"default:0" json:"sort"` // 排序
Ctime *sql.NullInt64 `gorm:"default:0" json:"ctime"` // 添加时间
}
type FsFaqModel struct {
db *gorm.DB
}
func NewFsFaqModel(db *gorm.DB) *FsFaqModel {
return &FsFaqModel{db}
}