feat(property): 人员管理增加人员标签功能
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-08-08 15:09:54 +08:00
parent c3f43f6e71
commit 5494d206d4
5 changed files with 85 additions and 74 deletions

View File

@@ -24,7 +24,7 @@ export interface PersonVO {
/**
* 性别
*/
gender: number
gender: string | number
/**
* 人脸图片
@@ -75,6 +75,10 @@ export interface PersonVO {
authEndDate?: string
authTime: any[]
rosterType?: string | number
}
export interface PersonForm extends BaseEntity {
@@ -293,7 +297,7 @@ export interface Person extends BaseEntity {
* @param file excel文件
*/
export interface PerssonImportParam {
updateSupport: boolean;
unitId: number;
file: Blob | File;
updateSupport: boolean
unitId: number
file: Blob | File
}