You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
354 B
Go
18 lines
354 B
Go
package model
|
|
|
|
type AppLauncher struct {
|
|
BaseModel
|
|
Key string `json:"key"`
|
|
}
|
|
|
|
type QuickJump struct {
|
|
BaseModel
|
|
Name string `json:"name"`
|
|
Alias string `json:"alias"`
|
|
Title string `json:"title"`
|
|
Detail string `json:"detail"`
|
|
Recommend int `json:"recommend"`
|
|
IsShow bool `json:"isShow"`
|
|
Router string `json:"router"`
|
|
}
|