a001.go 309 B

123456789101112131415
  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. // 车牌查车辆信息
  9. func A001(ctx context.Context, req *apis.CommonReq, reply *apis.CommonReply) error {
  10. return group(ctx,req,reply)
  11. }