// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.25.0 package model import ( "github.com/jackc/pgx/v5/pgtype" ) type Category struct { ID int32 Name string ParentID pgtype.Int4 UserID int32 } type ConstExpense struct { ID int32 Description pgtype.Text Expense pgtype.Numeric Duration pgtype.Interval Start pgtype.Date End pgtype.Date PrevID pgtype.Int4 CategoryID int32 UserID int32 } type SingleExpense struct { ID int64 Description pgtype.Text Expense pgtype.Numeric Date pgtype.Date CorrMonth pgtype.Date CategoryID int32 UserID int32 } type User struct { ID int32 Name string Pwd string Description pgtype.Text }