import { AllType } from './base'

export interface BaseResponse {
  code: number
  data?: AllType
  msg: string
}
