You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
538 B
TypeScript
18 lines
538 B
TypeScript
1 year ago
|
/**成功返回数据结构 */
|
||
|
export interface successMockApiProps {
|
||
|
code: number; // 0 成功
|
||
|
success: boolean; // true 成功
|
||
|
data: any; // mock业务层数据
|
||
|
msg: string | undefined; // 成功提示
|
||
|
isMock: boolean; // true 标识当前是模拟数据
|
||
|
}
|
||
|
|
||
|
/**失败返回数据结构 */
|
||
|
export interface failMockApiProps {
|
||
|
code?: number; // 7 失败
|
||
|
success: boolean; // false 失败
|
||
|
data: any; // mock业务层数据
|
||
|
msg: string | undefined; // 成功提示
|
||
|
isMock: boolean; // true 标识当前是模拟数据
|
||
|
}
|