mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-26 16:01:56 +08:00
20 lines
262 B
Go
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
|
|
}
|