// 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 Months int16 Start pgtype.Date End pgtype.Date PrevID pgtype.Int4 CategoryID int32 UserID int32 } type SingleExpense struct { ID int64 Description pgtype.Text Expense pgtype.Numeric Year int16 Month int16 Day int16 CategoryID int32 UserID int32 } type User struct { ID int32 Name string Pwd string Description pgtype.Text }