Files
APIPark/service/api-doc/model.go
T
2024-12-16 14:31:52 +08:00

23 lines
312 B
Go

package api_doc
import "time"
type UpdateDoc struct {
ID string
Content string
Prefix string
}
type Doc struct {
Id string
Service string
Content string
Updater string
UpdateAt time.Time
}
type DocCommit struct {
Content string `json:"content"`
APICount int64 `json:"api_count"`
}