修改奖励类型

This commit is contained in:
2025-06-24 19:53:39 +08:00
parent e28c44ecbb
commit 1c0b9a2d93
42 changed files with 666 additions and 1060 deletions

View File

@ -1,33 +0,0 @@
// ================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// You can delete these comments if you wish manually maintain this interface file.
// ================================================================================
package service
import (
"context"
"server/internal/model"
)
type (
IStoreTaskReward interface {
Create(ctx context.Context, in *model.StoreTaskRewardCreateIn) (out *model.StoreTaskRewardCreateOut, err error)
Delete(ctx context.Context, in *model.StoreTaskRewardDeleteIn) (out *model.StoreTaskRewardDeleteOut, err error)
}
)
var (
localStoreTaskReward IStoreTaskReward
)
func StoreTaskReward() IStoreTaskReward {
if localStoreTaskReward == nil {
panic("implement not found for interface IStoreTaskReward, forgot register?")
}
return localStoreTaskReward
}
func RegisterStoreTaskReward(i IStoreTaskReward) {
localStoreTaskReward = i
}