v003.go 331 B

1234567891011121314
  1. // Copyright 2019 gentensh.com. All rights reserved.
  2. // Use of this source code is governed by gentensh.com.
  3. package vehicle
  4. import (
  5. "context"
  6. "gd_vehicle/apis"
  7. )
  8. // 二要素验证,不一致不返回车档
  9. func V003(ctx context.Context, req *apis.CommonReq, reply *apis.CommonReply) error {
  10. return group(ctx,req,reply)
  11. }