123456789101112 |
- // Copyright 2019 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- package apis
- import "context"
- // 函数集合,注意:这里只起到声明作用
- type Funcs interface {
- // 验证车辆所有人
- Query(ctx context.Context, req *CommonReq, reply *CommonReply) error
- }
|