1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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 //身份 0 1正式 2 社区
- CreateTime string
- Hash string
- }
- // TeamCultivate float64 `xorm:"Decimal"`
- // CommunityGift float64 `xorm:"Decimal"`
- // CommunityNode float64 `xorm:"Decimal"`
- type Performance struct {
- Addr string //主键
- TotalPerformance float64 `xorm:"Decimal"`
- PerformanceLevel int
- PerformanceRewards float64 `xorm:"Decimal"`
- Recorded int
- MarketNum int
- MarketLevel int
- MarketRewards 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
- Droped int
- }
|