feat: 积分质押功能

This commit is contained in:
2025-04-03 16:17:20 +08:00
parent 229f1d181b
commit 8119bcefdc
40 changed files with 2552 additions and 108 deletions

View File

@@ -5,6 +5,7 @@ import (
"errors"
"github.com/robfig/cron/v3"
"github.com/zeromicro/go-zero/core/logx"
"nova_task/internal/job/check_points_stake"
"nova_task/internal/job/earn"
"nova_task/internal/job/holder"
"nova_task/internal/job/stake_settle"
@@ -16,6 +17,8 @@ var cronList = []func(context.Context, *svc.ServiceContext) cron.Job{
earn.NewCron,
holder.NewCron,
stake_settle.NewCron,
//game_notify.NewCron,
check_points_stake.NewCron,
}
type Corns struct {