1234567891011121314 |
- // Copyright 2019 gentensh.com. All rights reserved.
- // Use of this source code is governed by gentensh.com.
- package vehicle
- import (
- "context"
- "gd_vehicle/apis"
- )
- // 三要素验证,不一致不返回车档
- func V006(ctx context.Context, req *apis.CommonReq, reply *apis.CommonReply) error {
- return group(ctx,req,reply)
- }
|