mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
22 lines
285 B
Go
22 lines
285 B
Go
package service_doc
|
|
|
|
import "time"
|
|
|
|
type Doc struct {
|
|
ID string
|
|
Creator string
|
|
Updater string
|
|
Doc string
|
|
UpdateTime time.Time
|
|
CreateTime time.Time
|
|
}
|
|
|
|
type SaveDoc struct {
|
|
Sid string
|
|
Doc string
|
|
}
|
|
|
|
type DocCommit struct {
|
|
Content string `json:"content"`
|
|
}
|