mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-23 06:32:28 +08:00
refactor: eiblog
This commit is contained in:
14
pkg/model/blogger.go
Normal file
14
pkg/model/blogger.go
Normal file
@@ -0,0 +1,14 @@
|
||||
// Package model provides ...
|
||||
package model
|
||||
|
||||
// Blogger 博客信息
|
||||
type Blogger struct {
|
||||
BlogName string `gorm:"not null"` // 博客名
|
||||
SubTitle string `gorm:"not null"` // 子标题
|
||||
BeiAn string `gorm:"not null"` // 备案号
|
||||
BTitle string `gorm:"not null"` // 底部title
|
||||
Copyright string `gorm:"not null"` // 版权声明
|
||||
|
||||
SeriesSay string `gorm:"not null"` // 专题说明
|
||||
ArchivesSay string `gorm:"not null"` // 归档说明
|
||||
}
|
||||
Reference in New Issue
Block a user