123456789101112131415 |
- // Copyright 2019 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- package vehicle
- import (
- "context"
- "gd_vehicle/apis"
- )
- // 车牌查车辆信息
- func A001(ctx context.Context, req *apis.CommonReq, reply *apis.CommonReply) error {
- return group(ctx,req,reply)
- }
|