OSDN Git Service

43951817c5e4894676e1543deb8e5d35a58a5ac8
[bytom/vapor.git] / toolbar / reward / database / orm / vote_utxo.go
1 package orm
2
3 type Utxo struct {
4         ID           uint64 `gorm:"primary_key"`
5         Xpub         string
6         VoterAddress string
7         VoteHeight   uint64
8         VoteNum      uint64
9         VetoHeight   uint64
10         OutputID     string
11 }