a002.go 305 B

1234567891011121314
  1. // Copyright 2019 getensh.com. All rights reserved.
  2. // Use of this source code is governed by getensh.com.
  3. package vehicle
  4. import (
  5. "context"
  6. "gd_vehicle/apis"
  7. )
  8. // vin查车辆信息
  9. func A002(ctx context.Context, req *apis.CommonReq, reply *apis.CommonReply) error {
  10. return group(ctx,req,reply)
  11. }