实现任务绑定奖励的接口

This commit is contained in:
2025-06-24 21:36:58 +08:00
parent 4c367bd9ca
commit 8cd9477f3d
9 changed files with 156 additions and 2 deletions

View File

@ -27,6 +27,7 @@ type (
GetGoods(ctx context.Context, in *model.GetGoodsGetIn) (out *model.GoodsGetOut, err error)
// GetGoodsDetails 物品详情
GetGoodsDetails(ctx context.Context, in *model.GetGoodsDetailsIn) (out *model.QueryUserGoodsDetailResponse, err error)
OperateTaskReward(ctx context.Context, in *model.OperateTaskRewardIn) (out *model.OperateTaskRewardOut, err error)
}
)