go-common/app/interface/main/space/model/coin.go

14 lines
213 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package model
import (
v1 "go-common/app/service/main/archive/api"
)
// CoinArc coin archive.
type CoinArc struct {
*v1.Arc
Coins int64 `json:"coins"`
Time int64 `json:"time"`
IP string `json:"ip"`
}