This commit is contained in:
aozhiwei 2024-11-06 11:28:46 +08:00
parent 5ff979a6ac
commit 8f68be90d6
2 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@ import (
"main/common" "main/common"
"main/model" "main/model"
"main/vo" "main/vo"
"main/mt"
"gorm.io/gorm" "gorm.io/gorm"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
) )
@ -36,7 +37,7 @@ func (this *UserApi) Login(c *gin.Context) {
user.Avatar = "" user.Avatar = ""
user.NickName = s.GetNickName() user.NickName = s.GetNickName()
user.Score = "" user.Score = ""
user.Dice = 0 user.Dice = mt.Table.Global.GetDailyDiceNum()
user.CreateTime = q5.ToInt32(nowTime) user.CreateTime = q5.ToInt32(nowTime)
user.ModifyTime = q5.ToInt32(nowTime) user.ModifyTime = q5.ToInt32(nowTime)
if result := f5.GetApp().GetOrmDb(constant.WHEEL_DB).Create(user); result.Error != nil { if result := f5.GetApp().GetOrmDb(constant.WHEEL_DB).Create(user); result.Error != nil {

View File

@ -13,7 +13,7 @@ type GlobalTable struct {
f5.IdMetaTable[Global] f5.IdMetaTable[Global]
} }
func (this *GlobalTable) GetDice() int32 { func (this *GlobalTable) GetDailyDiceNum() int32 {
meta := this.GetById(1) meta := this.GetById(1)
if meta == nil { if meta == nil {
return 0 return 0