summaryrefslogtreecommitdiff
path: root/model/models.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/models.go')
-rw-r--r--model/models.go47
1 files changed, 47 insertions, 0 deletions
diff --git a/model/models.go b/model/models.go
new file mode 100644
index 0000000..be09076
--- /dev/null
+++ b/model/models.go
@@ -0,0 +1,47 @@
+// Code generated by sqlc. DO NOT EDIT.
+// versions:
+// sqlc v1.25.0
+
+package model
+
+import (
+ "database/sql"
+ "time"
+)
+
+type Category struct {
+ ID int32
+ Name string
+ ParentID sql.NullInt32
+ UserID int32
+}
+
+type ConstExpense struct {
+ ID int32
+ Description sql.NullString
+ Expense string
+ Months uint8
+ Start time.Time
+ End time.Time
+ PrevID sql.NullInt32
+ CategoryID int32
+ UserID int32
+}
+
+type SingleExpense struct {
+ ID int32
+ Description sql.NullString
+ Expense string
+ Year uint16
+ Month uint8
+ Day uint8
+ CategoryID int32
+ UserID int32
+}
+
+type User struct {
+ ID int32
+ Name string
+ Pwd string
+ Description sql.NullString
+}