type.go 158 B

12345678910
  1. package response
  2. type Responses interface {
  3. SetCode(int32)
  4. SetTraceID(string)
  5. SetMsg(string)
  6. SetData(interface{})
  7. SetSuccess(bool)
  8. Clone() Responses
  9. }