feat(app): update

This commit is contained in:
Yangtao
2025-11-19 14:24:13 +08:00
parent 1eac66d7fd
commit 0c34585649
329 changed files with 10760 additions and 281 deletions

16
pkg/dto/ShareDTO.go Normal file
View File

@ -0,0 +1,16 @@
package dto
// 分享对象
type ShareDTO struct {
ShareLink string
ShareTitle string //
ShareDescription string
ShareIconUrl string // 分享的icon
LinkUrl string // 打开的链接
}
type VisitCountDTO struct {
VisitCount string // 访问数
VisitedCount string // 被访问数
NewVisitedCount string // 新被访问数
}