refactor: ♻️ 导入增加错误提示信息
导入增加错误提示信息
This commit is contained in:
13
src/types/global.d.ts
vendored
13
src/types/global.d.ts
vendored
@@ -89,5 +89,18 @@ declare global {
|
||||
/** 子列表 */
|
||||
children?: OptionType[];
|
||||
}
|
||||
/**
|
||||
* 导入结果
|
||||
*/
|
||||
interface ExcelResult {
|
||||
/** 状态码 */
|
||||
code: string;
|
||||
/** 无效数据条数 */
|
||||
invalidCount: number;
|
||||
/** 有效数据条数 */
|
||||
validCount: number;
|
||||
/** 错误信息 */
|
||||
messageList: Array<string>;
|
||||
}
|
||||
}
|
||||
export {};
|
||||
|
||||
Reference in New Issue
Block a user