Files
2024-08-30 09:55:56 +08:00

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"`
}