Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Blog ¶
type Blog struct { g.Meta `orm:"table:blog, do:true"` Id interface{} // Blog ID Title interface{} // Title Content interface{} // Content Nickname interface{} // Nickname CreateAt *gtime.Time // Created Time UpdateAt *gtime.Time // Updated Time DeleteAt *gtime.Time // Deleted Time }
Blog is the golang structure of table blog for DAO operations like Where/Data.
type Stats ¶
type Stats struct { g.Meta `orm:"table:stats, do:true"` Id interface{} // Blog ID Nickname interface{} // Nickname BlogCnt interface{} // Blog Count CreateAt *gtime.Time // Created Time UpdateAt *gtime.Time // Updated Time DeleteAt *gtime.Time // Deleted Time }
Stats is the golang structure of table stats for DAO operations like Where/Data.
Click to show internal directories.
Click to hide internal directories.