request.go 149 B

123456789101112
  1. package jdlclient
  2. /**
  3. * @Author: qz
  4. * @Date: 2022/6/14 13:44
  5. * @Description:
  6. */
  7. type JdLRequest interface {
  8. GetPath() string
  9. GetBody() string
  10. }