Files
APIPark/service/service-doc/model.go
T
2024-08-12 21:38:09 +08:00

20 lines
262 B
Go

package service_doc
import "time"
type Doc struct {
ID int64
DocID string
Name string
Creator string
Updater string
Doc string
UpdateTime time.Time
CreateTime time.Time
}
type SaveDoc struct {
Sid string
Doc string
}