forked from lxh/go-wxhelper
7 lines
108 B
TypeScript
7 lines
108 B
TypeScript
// 默认返回数据结构
|
|
export type BaseResult<T> = {
|
|
code: number;
|
|
message: string;
|
|
data?: T;
|
|
};
|