Eric0718 2 年之前
父节点
当前提交
6b8ba0a9ee
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      models/tables.go

+ 2 - 2
models/tables.go

@@ -40,12 +40,12 @@ type Performance struct {
 }
 
 type BlockInfo struct {
-	Id          int64
+	Id          int64 //主键
 	BlockNumber int64
 }
 
 type RewardsPool struct {
-	Id              int64
+	Id              int64   //主键
 	TeamPerformance float64 `xorm:"Decimal"`
 	TeamCultivate   float64 `xorm:"Decimal"`
 	TotalPool       float64 `xorm:"Decimal"`