updated tranx type... again

This commit is contained in:
Derek McQuay 2017-02-05 00:04:24 -08:00
parent dc4b1be612
commit 8fa3290406
No known key found for this signature in database
GPG Key ID: 92A7BC0C86B0B91A
1 changed files with 7 additions and 7 deletions

View File

@ -3,11 +3,11 @@ package chipmunk
import "time"
type tranx struct {
ID int `json:"id"`
Cost float64 `json:"cost"`
Store string `json:"store"`
Info string `json:"info"`
Date time.Time `json:"date"`
User_ID int `json:"user_id"`
Category_ID int `json:"category_id"`
ID int `json:"id"`
Cost float64 `json:"cost"`
Store string `json:"store"`
Info string `json:"info"`
Date time.Time `json:"date"`
User int `json:"user"`
Category int `json:"category"`
}