service/dbstruct/hyperlink.go

7 lines
157 B
Go
Raw Normal View History

2024-12-06 13:16:00 +08:00
package dbstruct
type Hyperlink struct {
Action string `json:"action" bson:"action"` // 跳转类型
Url string `json:"url" bson:"url"` // url
}