|
@@ -7,8 +7,8 @@ import ( |
|
|
type BlockGreenChain struct { |
|
|
type BlockGreenChain struct { |
|
|
Id int `json:"id" xorm:"not null pk autoincr comment('主键id') INT(11)"` |
|
|
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)"` |
|
|
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)"` |
|
|
|
|
|
|
|
|
Coin1 int `json:"coin_1" xorm:"coin_1 not null default 0 comment('coinId_1(类似于区块币)') INT(11)"` |
|
|
|
|
|
Coin2 int `json:"coin_2" xorm:"coin_2 not null default 0 comment('coinId_2(类似于贡献值)') INT(11)"` |
|
|
InitialEverydayPublishCoin string `json:"initial_everyday_publish_coin" xorm:"not null default 0.0000000000 comment('初始每日区块币发行数量') DECIMAL(28,10)"` |
|
|
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)"` |
|
|
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)"` |
|
|
TodayPublishCoin string `json:"today_publish_coin" xorm:"not null default 0.0000000000 comment('今日区块币发行数量(若为0,则按当前每日区块币发行数量)') DECIMAL(28,10)"` |
|
|