fix
This commit is contained in:
parent
4b1ac9177d
commit
d0c3547ef6
4 changed files with 25 additions and 21 deletions
|
|
@ -6,6 +6,7 @@ package sqlc
|
|||
|
||||
import (
|
||||
"database/sql/driver"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
|
|
@ -223,11 +224,11 @@ type ReviewImage struct {
|
|||
}
|
||||
|
||||
type Signal struct {
|
||||
ID int64 `json:"id"`
|
||||
TitleID *int64 `json:"title_id"`
|
||||
RawData []byte `json:"raw_data"`
|
||||
ProviderID int64 `json:"provider_id"`
|
||||
Pending bool `json:"pending"`
|
||||
ID int64 `json:"id"`
|
||||
TitleID *int64 `json:"title_id"`
|
||||
RawData json.RawMessage `json:"raw_data"`
|
||||
ProviderID int64 `json:"provider_id"`
|
||||
Pending bool `json:"pending"`
|
||||
}
|
||||
|
||||
type Studio struct {
|
||||
|
|
@ -238,13 +239,13 @@ type Studio struct {
|
|||
}
|
||||
|
||||
type Tag struct {
|
||||
ID int64 `json:"id"`
|
||||
TagNames []byte `json:"tag_names"`
|
||||
ID int64 `json:"id"`
|
||||
TagNames json.RawMessage `json:"tag_names"`
|
||||
}
|
||||
|
||||
type Title struct {
|
||||
ID int64 `json:"id"`
|
||||
TitleNames []byte `json:"title_names"`
|
||||
TitleNames json.RawMessage `json:"title_names"`
|
||||
StudioID int64 `json:"studio_id"`
|
||||
PosterID *int64 `json:"poster_id"`
|
||||
TitleStatus TitleStatusT `json:"title_status"`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue