mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
12 lines
193 B
Go
12 lines
193 B
Go
package show
|
|
|
|
//AppActive db show app_active table
|
|
type AppActive struct {
|
|
Name string `json:"name,omitempty"`
|
|
}
|
|
|
|
// TableName .
|
|
func (a AppActive) TableName() string {
|
|
return "app_active"
|
|
}
|