2021-12-08 23:43:14 +08:00
|
|
|
package api
|
|
|
|
|
2022-02-03 15:32:03 +08:00
|
|
|
type Memo struct {
|
2022-05-03 11:49:10 +08:00
|
|
|
ID int `json:"id"`
|
|
|
|
|
|
|
|
// Standard fields
|
2022-05-19 18:32:04 +08:00
|
|
|
RowStatus RowStatus `json:"rowStatus"`
|
|
|
|
CreatorID int `json:"creatorId"`
|
|
|
|
CreatedTs int64 `json:"createdTs"`
|
|
|
|
UpdatedTs int64 `json:"updatedTs"`
|
2022-02-03 15:32:03 +08:00
|
|
|
|
2022-05-03 11:49:10 +08:00
|
|
|
// Domain specific fields
|
2022-05-19 18:32:04 +08:00
|
|
|
Content string `json:"content"`
|
|
|
|
Pinned bool `json:"pinned"`
|
2021-12-08 23:43:14 +08:00
|
|
|
}
|
|
|
|
|
2022-02-03 15:32:03 +08:00
|
|
|
type MemoCreate struct {
|
2022-05-03 11:49:10 +08:00
|
|
|
// Standard fields
|
2022-05-03 02:05:43 +08:00
|
|
|
CreatorID int
|
2022-05-17 21:21:13 +08:00
|
|
|
// Used to import memos with a clearly created ts.
|
2022-05-15 22:21:13 +08:00
|
|
|
CreatedTs *int64 `json:"createdTs"`
|
2022-02-18 22:21:10 +08:00
|
|
|
|
2022-05-03 11:49:10 +08:00
|
|
|
// Domain specific fields
|
2022-02-18 22:21:10 +08:00
|
|
|
Content string `json:"content"`
|
2021-12-08 23:43:14 +08:00
|
|
|
}
|
|
|
|
|
2022-02-03 15:32:03 +08:00
|
|
|
type MemoPatch struct {
|
2022-05-03 02:05:43 +08:00
|
|
|
ID int
|
2021-12-08 23:43:14 +08:00
|
|
|
|
2022-05-03 11:49:10 +08:00
|
|
|
// Standard fields
|
2022-05-19 18:32:04 +08:00
|
|
|
RowStatus *RowStatus `json:"rowStatus"`
|
2022-05-03 11:49:10 +08:00
|
|
|
|
|
|
|
// Domain specific fields
|
|
|
|
Content *string `json:"content"`
|
2021-12-09 22:02:57 +08:00
|
|
|
}
|
|
|
|
|
2022-02-03 15:32:03 +08:00
|
|
|
type MemoFind struct {
|
2022-05-03 11:49:10 +08:00
|
|
|
ID *int `json:"id"`
|
|
|
|
|
|
|
|
// Standard fields
|
2022-05-19 18:32:04 +08:00
|
|
|
RowStatus *RowStatus `json:"rowStatus"`
|
|
|
|
CreatorID *int `json:"creatorId"`
|
|
|
|
|
|
|
|
// Domain specific fields
|
2022-06-21 21:58:33 +08:00
|
|
|
Pinned *bool
|
|
|
|
ContentSearch *string
|
|
|
|
|
|
|
|
// Pagination
|
|
|
|
Limit int
|
|
|
|
Offset int
|
2021-12-08 23:43:14 +08:00
|
|
|
}
|
|
|
|
|
2022-02-03 15:32:03 +08:00
|
|
|
type MemoDelete struct {
|
2022-05-17 21:21:13 +08:00
|
|
|
ID int `json:"id"`
|
2022-02-03 15:32:03 +08:00
|
|
|
}
|