add expenses management
This commit is contained in:
parent
b7905ddded
commit
f8ddf152e4
16 changed files with 611 additions and 29 deletions
|
|
@ -11,11 +11,11 @@ type ShoppingList struct {
|
|||
}
|
||||
|
||||
type ListItem struct {
|
||||
ID string `db:"id"`
|
||||
ListID string `db:"list_id"`
|
||||
Name string `db:"name"`
|
||||
IsChecked bool `db:"is_checked"`
|
||||
CreatedBy string `db:"created_by"`
|
||||
CreatedAt time.Time `db:"created_at"`
|
||||
UpdatedAt time.Time `db:"updated_at"`
|
||||
ID string `db:"id"`
|
||||
ListID string `db:"list_id"`
|
||||
Name string `db:"name"`
|
||||
IsChecked bool `db:"is_checked"`
|
||||
CreatedBy string `db:"created_by"`
|
||||
CreatedAt time.Time `db:"created_at"`
|
||||
UpdatedAt time.Time `db:"updated_at"`
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue