Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Document ¶
type Document struct {
Id int64 `gorm:"primaryKey"`
Title string `gorm:"type:varchar(255);not null;default:'';comment:Document Title"`
Content string `gorm:"type:text;comment:Document Content"`
Tags string `gorm:"type:varchar(255);not null;default:'';comment:Document Tags"`
Show *bool `gorm:"type:tinyint(1);not null;default:1;comment:Show"`
CreatedAt time.Time `gorm:"<-:create;comment:Create Time"`
UpdatedAt time.Time `gorm:"comment:Update Time"`
}
Click to show internal directories.
Click to hide internal directories.