feat(property): 添加用户导入和人脸导入功能
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-29 02:05:02 +08:00
parent cc9ad36328
commit fb537fdc00
5 changed files with 382 additions and 79 deletions

View File

@@ -285,3 +285,15 @@ export interface Person extends BaseEntity {
email: string
}
/**
* @description: 用户导入
* @param updateSupport 是否覆盖数据
* @param unitId 单位Id
* @param file excel文件
*/
export interface PerssonImportParam {
updateSupport: boolean;
unitId: number;
file: Blob | File;
}