common.go 388 B

1234567891011121314151617181920212223
  1. package apiok
  2. /*type OkResponse struct {
  3. Code int `json:"code"`
  4. Msg string `json:"msg"`
  5. Data interface{} `json:"data"`
  6. }
  7. func CommonResponse(data interface{}) *OkResponse {
  8. return &OkResponse{
  9. Code: 200,
  10. Msg: "ok",
  11. Data: data,
  12. }
  13. }
  14. */
  15. type ApiOk struct {
  16. Success bool `json:"success"`
  17. }
  18. func NewApiOk(success bool) *ApiOk {
  19. return &ApiOk{Success: success}
  20. }