You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
828 B
20 lines
828 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package video
|
|
|
|
import (
|
|
"context"
|
|
|
|
"xgit.pub/module/cms/app/api/video/v1"
|
|
)
|
|
|
|
type IVideoV1 interface {
|
|
GetList(ctx context.Context, req *v1.GetListReq) (res *v1.GetListRes, err error)
|
|
Create(ctx context.Context, req *v1.CreateReq) (res *v1.CreateRes, err error)
|
|
Update(ctx context.Context, req *v1.UpdateReq) (res *v1.UpdateRes, err error)
|
|
Delete(ctx context.Context, req *v1.DeleteReq) (res *v1.DeleteRes, err error)
|
|
BatchDelete(ctx context.Context, req *v1.BatchDeleteReq) (res *v1.BatchDeleteRes, err error)
|
|
Get(ctx context.Context, req *v1.GetReq) (res *v1.GetRes, err error)
|
|
}
|