Browse Source

add 区块星链

tags/v2.0.0
DengBiao 2 years ago
parent
commit
3ffcf3c5f3
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      db/model/block_star_chain.go

+ 3
- 3
db/model/block_star_chain.go View File

@@ -7,9 +7,9 @@ import (
type BlockStarChain struct {
Id int `json:"id" xorm:"not null pk autoincr comment('主键id') INT(11)"`
IsUse int `json:"is_use" xorm:"not null default 0 comment('是否开启(否:0;是:1)') TINYINT(1)"`
Coin1 int `json:"coin_1" xorm:"not null default 0 comment('coinId_1(类似于区块币)') INT(11)"`
Coin2 int `json:"coin_2" xorm:"not null default 0 comment('coinId_2(类似于静态贡献值)') INT(11)"`
Coin3 int `json:"coin_3" xorm:"not null default 0 comment('coinId_3(类似于动态贡献值)') INT(11)"`
Coin1 int `json:"coin1" xorm:"not null default 0 comment('coinId_1(类似于区块币)') INT(11)"`
Coin2 int `json:"coin2" xorm:"not null default 0 comment('coinId_2(类似于静态贡献值)') INT(11)"`
Coin3 int `json:"coin3" xorm:"not null default 0 comment('coinId_3(类似于动态贡献值)') INT(11)"`
InitialEverydayPublishCoin string `json:"initial_everyday_publish_coin" xorm:"not null default 0.0000000000 comment('初始每日区块币发行数量') DECIMAL(28,10)"`
NowEverydayPublishCoin string `json:"now_everyday_publish_coin" xorm:"not null default 0.0000000000 comment('当前每日区块币发行数量') DECIMAL(28,10)"`
TodayPublishCoin string `json:"today_publish_coin" xorm:"not null default 0.0000000000 comment('今日区块币发行数量(若为0,则按当前每日区块币发行数量)') DECIMAL(28,10)"`


Loading…
Cancel
Save