github.com/OrigamiWang/msd/micro@v0.0.0-20240229032328-b62246268db9/model/response.go (about)

     1  package model
     2  
     3  type Response struct {
     4  	Code int         `json:"code"`
     5  	Ts   string      `json:"ts"`
     6  	Msg  string      `json:"msg"`
     7  	Data interface{} `json:"data"`
     8  }