新增奖励类型的 CRUD

This commit is contained in:
chy
2025-06-05 10:12:17 +08:00
parent ba389a1011
commit acb6d9c01a
13 changed files with 173 additions and 0 deletions

16
api/user/user.go Normal file
View File

@ -0,0 +1,16 @@
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package user
import (
"context"
"server/api/user/v1"
)
type IUserV1 interface {
Info(ctx context.Context, req *v1.InfoReq) (res *v1.InfoRes, err error)
List(ctx context.Context, req *v1.ListReq) (res *v1.ListRes, err error)
}