增加人像页面

This commit is contained in:
lxj
2025-06-26 22:02:40 +08:00
parent f620debe43
commit 1bc8d02cec
16 changed files with 1600 additions and 246 deletions

View File

@@ -1,10 +1,10 @@
import type { PageQuery, BaseEntity } from '#/api/common';
import type { BaseEntity, PageQuery } from '#/api/common';
export interface PersonLibImgVO {
/**
* 主键id
*/
id: string | number;
id: number | string;
/**
* 人员库编码
@@ -59,28 +59,17 @@ export interface PersonLibImgVO {
*/
birthDate: string;
/**
* 创建人id
*/
createById: string | number;
/**
* 更新人id
*/
updateById: string | number;
/**
* 搜索值
*/
searchValue: string;
}
export interface PersonLibImgForm extends BaseEntity {
/**
* 主键id
*/
id?: string | number;
id?: number | string;
/**
* 人员库编码
@@ -135,21 +124,10 @@ export interface PersonLibImgForm extends BaseEntity {
*/
birthDate?: string;
/**
* 创建人id
*/
createById?: string | number;
/**
* 更新人id
*/
updateById?: string | number;
/**
* 搜索值
*/
searchValue?: string;
}
export interface PersonLibImgQuery extends PageQuery {
@@ -206,23 +184,13 @@ export interface PersonLibImgQuery extends PageQuery {
*/
birthDate?: string;
/**
* 创建人id
*/
createById?: string | number;
/**
* 更新人id
*/
updateById?: string | number;
/**
* 搜索值
*/
searchValue?: string;
/**
* 日期范围参数
*/
* 日期范围参数
*/
params?: any;
}