1
0
forked from lxh/go-wxhelper
2024-07-04 17:16:37 +08:00

7 lines
108 B
TypeScript

// 默认返回数据结构
export type BaseResult<T> = {
code: number;
message: string;
data?: T;
};