书籍列表接口新增参数
This commit is contained in:
16
api/system/system.go
Normal file
16
api/system/system.go
Normal file
@ -0,0 +1,16 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package system
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"server/api/system/v1"
|
||||
)
|
||||
|
||||
type ISystemV1 interface {
|
||||
SystemSave(ctx context.Context, req *v1.SystemSaveReq) (res *v1.SystemSaveRes, err error)
|
||||
SystemVersion(ctx context.Context, req *v1.SystemVersionReq) (res *v1.SystemVersionRes, err error)
|
||||
}
|
||||
Reference in New Issue
Block a user