feat: cursor stub added
This commit is contained in:
parent
fbf3f1d3a2
commit
34d9341e75
5 changed files with 214 additions and 20 deletions
|
|
@ -212,7 +212,6 @@ type Review struct {
|
|||
ID int64 `json:"id"`
|
||||
Data string `json:"data"`
|
||||
Rating *int32 `json:"rating"`
|
||||
IllustID *int64 `json:"illust_id"`
|
||||
UserID *int64 `json:"user_id"`
|
||||
TitleID *int64 `json:"title_id"`
|
||||
CreatedAt pgtype.Timestamptz `json:"created_at"`
|
||||
|
|
@ -277,10 +276,10 @@ type User struct {
|
|||
}
|
||||
|
||||
type Usertitle struct {
|
||||
UserID int64 `json:"user_id"`
|
||||
TitleID int64 `json:"title_id"`
|
||||
Status UsertitleStatusT `json:"status"`
|
||||
Rate *int32 `json:"rate"`
|
||||
ReviewText *string `json:"review_text"`
|
||||
ReviewDate pgtype.Timestamptz `json:"review_date"`
|
||||
UserID int64 `json:"user_id"`
|
||||
TitleID int64 `json:"title_id"`
|
||||
Status UsertitleStatusT `json:"status"`
|
||||
Rate *int32 `json:"rate"`
|
||||
ReviewID *int64 `json:"review_id"`
|
||||
Ctime pgtype.Timestamptz `json:"ctime"`
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue