2016-08-22 15:17:13 -07:00
|
|
|
package chipmunk
|
|
|
|
|
2016-08-23 09:15:34 -07:00
|
|
|
import "time"
|
|
|
|
|
2016-08-22 15:17:13 -07:00
|
|
|
type tranx struct {
|
2017-02-04 23:38:42 -08:00
|
|
|
ID int `json:"id"`
|
2017-02-04 22:33:01 -08:00
|
|
|
Cost float64 `json:"cost"`
|
|
|
|
Store string `json:"store"`
|
|
|
|
Info string `json:"info"`
|
|
|
|
Month time.Month `json:"month"`
|
|
|
|
User_ID int `json:"user_id"`
|
|
|
|
Category_ID int `json:"category_id"`
|
2016-08-22 15:17:13 -07:00
|
|
|
}
|