chore: add service version

This commit is contained in:
boojack
2022-05-17 21:21:13 +08:00
parent 5d0e9724db
commit 74ab42069f
13 changed files with 66 additions and 55 deletions

View File

@@ -16,7 +16,7 @@ type Memo struct {
type MemoCreate struct {
// Standard fields
CreatorID int
// Used to import memos with clearly created ts.
// Used to import memos with a clearly created ts.
CreatedTs *int64 `json:"createdTs"`
// Domain specific fields
@@ -27,7 +27,6 @@ type MemoPatch struct {
ID int
// Standard fields
CreatedTs *int64 `json:"createdTs"`
RowStatus *string `json:"rowStatus"`
// Domain specific fields
@@ -43,5 +42,5 @@ type MemoFind struct {
}
type MemoDelete struct {
ID *int `json:"id"`
ID int `json:"id"`
}