update sqlc gen
This commit is contained in:
parent
2fe0379a67
commit
405cd05c98
@ -21,15 +21,15 @@ type Account struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type Accountsamo struct {
|
type Accountsamo struct {
|
||||||
ID int64 `db:"id" json:"id"`
|
ID int64 `db:"id" json:"id"`
|
||||||
Accountid string `db:"accountid" json:"accountid"`
|
Accountid string `db:"accountid" json:"accountid"`
|
||||||
Amoid int32 `db:"amoid" json:"amoid"`
|
Amoid int32 `db:"amoid" json:"amoid"`
|
||||||
Name string `db:"name" json:"name"`
|
Name string `db:"name" json:"name"`
|
||||||
Deleted bool `db:"deleted" json:"deleted"`
|
Deleted bool `db:"deleted" json:"deleted"`
|
||||||
Createdat time.Time `db:"createdat" json:"createdat"`
|
Createdat time.Time `db:"createdat" json:"createdat"`
|
||||||
Subdomain string `db:"subdomain" json:"subdomain"`
|
Subdomain string `db:"subdomain" json:"subdomain"`
|
||||||
Country string `db:"country" json:"country"`
|
Country string `db:"country" json:"country"`
|
||||||
Driveurl sql.NullString `db:"driveurl" json:"driveurl"`
|
Driveurl string `db:"driveurl" json:"driveurl"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Amocrmstatus struct {
|
type Amocrmstatus struct {
|
||||||
|
@ -715,12 +715,12 @@ VALUES ($1, $2, $3, $4, $5, $6)
|
|||||||
`
|
`
|
||||||
|
|
||||||
type CreateAmoAccountParams struct {
|
type CreateAmoAccountParams struct {
|
||||||
Accountid string `db:"accountid" json:"accountid"`
|
Accountid string `db:"accountid" json:"accountid"`
|
||||||
Amoid int32 `db:"amoid" json:"amoid"`
|
Amoid int32 `db:"amoid" json:"amoid"`
|
||||||
Name string `db:"name" json:"name"`
|
Name string `db:"name" json:"name"`
|
||||||
Subdomain string `db:"subdomain" json:"subdomain"`
|
Subdomain string `db:"subdomain" json:"subdomain"`
|
||||||
Country string `db:"country" json:"country"`
|
Country string `db:"country" json:"country"`
|
||||||
Driveurl sql.NullString `db:"driveurl" json:"driveurl"`
|
Driveurl string `db:"driveurl" json:"driveurl"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// amo methods:
|
// amo methods:
|
||||||
@ -2790,7 +2790,7 @@ type GettingAmoUsersTrueResultsRow struct {
|
|||||||
PerformerName string `db:"performer_name" json:"performer_name"`
|
PerformerName string `db:"performer_name" json:"performer_name"`
|
||||||
Subdomain string `db:"subdomain" json:"subdomain"`
|
Subdomain string `db:"subdomain" json:"subdomain"`
|
||||||
Accountid_2 string `db:"accountid_2" json:"accountid_2"`
|
Accountid_2 string `db:"accountid_2" json:"accountid_2"`
|
||||||
Driveurl sql.NullString `db:"driveurl" json:"driveurl"`
|
Driveurl string `db:"driveurl" json:"driveurl"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (q *Queries) GettingAmoUsersTrueResults(ctx context.Context) ([]GettingAmoUsersTrueResultsRow, error) {
|
func (q *Queries) GettingAmoUsersTrueResults(ctx context.Context) ([]GettingAmoUsersTrueResultsRow, error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user