123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package models
- type UserInfo struct {
- Id int64
- Addr string
- Direct string
- DirectNumber int
- IndirectRewards float64 `xorm:"Decimal"`
- Indirect string
- IndirectNumber int
- DirectRewards float64 `xorm:"Decimal"`
- Superiors string
- AvailableClaim float64 `xorm:"Decimal"`
- TotalClaimed float64 `xorm:"Decimal"`
- AvailableReinput float64 `xorm:"Decimal"`
- TotalReinputed float64 `xorm:"Decimal"`
- ParticipateAmount float64 `xorm:"Decimal"`
- State int
- CreateTime string
- Hash string
- }
- type Performance struct {
- Addr string
- TotalPerformance float64 `xorm:"Decimal"`
- PerformanceLevel int
- PerformanceRewards float64 `xorm:"Decimal"`
- TotalTeamCultivate float64 `xorm:"Decimal"`
- CultivateLevel int
- TeamCultivateRewards float64 `xorm:"Decimal"`
- CommunityGift float64 `xorm:"Decimal"`
- CommunityNode float64 `xorm:"Decimal"`
- }
- type BlockInfo struct {
- Id int64
- BlockNumber int64
- }
- type RewardsPool struct {
- Id int64
- TeamPerformance float64 `xorm:"Decimal"`
- TeamCultivate float64 `xorm:"Decimal"`
- TotalPool float64 `xorm:"Decimal"`
- }
- type ClaimedTxs struct {
- Id int64
- Addr string
- Amount float64 `xorm:"Decimal"`
- BlockHeight int64
- Hash string
- Signature string
- CreateTime string
- State int
- }
|