chipmunk/tranx.go

14 lines
323 B
Go
Raw Normal View History

package chipmunk
2016-08-23 09:15:34 -07:00
import "time"
type tranx struct {
2017-02-04 23:54:07 -08:00
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"`
}