Files
APIPark/service/api-doc/model.go
T
2024-08-30 18:33:35 +08:00

23 lines
312 B
Go

package api_doc
import "time"
type UpdateDoc struct {
ID string
Service string
Content 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"`
}