v004.go 304 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 V004(ctx context.Context, req *apis.CommonReq, reply *apis.CommonReply) error {
  10. return group(ctx,req,reply)
  11. }