7 lines
157 B
Go
7 lines
157 B
Go
|
package dbstruct
|
||
|
|
||
|
type Hyperlink struct {
|
||
|
Action string `json:"action" bson:"action"` // 跳转类型
|
||
|
Url string `json:"url" bson:"url"` // url
|
||
|
}
|