chore: address comments

This commit is contained in:
email
2022-02-05 11:43:25 +08:00
parent 226e9c156a
commit 925773dbd6
13 changed files with 45 additions and 39 deletions

View File

@ -18,14 +18,14 @@ type MemoCreate struct {
type MemoPatch struct {
Id int
Content *string
RowStatus *string
Content *string `json:"content"`
RowStatus *string `json:"rowStatus"`
}
type MemoFind struct {
Id *int
CreatorId *int
RowStatus *string
Id *int `json:"id"`
CreatorId *int `json:"creatorId"`
RowStatus *string `json:"rowStatus"`
}
type MemoDelete struct {