Interface MasResponseType<T>

梅安森响应体类型

interface MasResponseType<T> {
    code: number;
    data: T;
    info: string;
}

Type Parameters

  • T

Properties

Properties

code: number

状态码(200表示成功)

data: T

数据

info: string

信息