浏览代码

update

master
shenjiachi 4 天前
父节点
当前提交
3f1d190a6c
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      src/model/punishment_record.go

+ 2
- 1
src/model/punishment_record.go 查看文件

@@ -4,5 +4,6 @@ type PunishmentRecord struct {
Id int64 `json:"id" xorm:"pk autoincr BIGINT(20)"`
Uid int64 `json:"uid" xorm:"not null BIGINT(20)"`
Amount string `json:"amount" xorm:"not null default 0.00000000 comment('能量值') DECIMAL(28,8)"`
Complete int `json:"complete" xorm:"not null comment('是否完成') INT(1)"`
Complete int `json:"complete" xorm:"not null default 0 comment('是否完成)') INT(1)"`
TagId int `json:"tag_id" xorm:"not null default 0 comment('标签id') INT(11)"`
}

正在加载...
取消
保存