added month to tranx
This commit is contained in:
parent
0b959fedfe
commit
08880ea88b
@ -122,6 +122,7 @@ func (s *Server) tranx(w http.ResponseWriter, r *http.Request) {
|
|||||||
Cost: t.Cost,
|
Cost: t.Cost,
|
||||||
Store: t.Store,
|
Store: t.Store,
|
||||||
Info: t.Info,
|
Info: t.Info,
|
||||||
|
Month: t.Month,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
9
tranx.go
9
tranx.go
@ -1,7 +1,10 @@
|
|||||||
package chipmunk
|
package chipmunk
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
type tranx struct {
|
type tranx struct {
|
||||||
Cost float32 `json:"cost"`
|
Cost float32 `json:"cost"`
|
||||||
Store string `json:"store"`
|
Store string `json:"store"`
|
||||||
Info string `json:"Info"`
|
Info string `json:"Info"`
|
||||||
|
Month time.Month `json:"Month"`
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user