增加人像库

增加人像库图片
This commit is contained in:
15683799673
2025-06-24 23:55:59 +08:00
parent 85975db5ee
commit 9c08cca095
10 changed files with 1454 additions and 0 deletions

View File

@@ -0,0 +1,144 @@
import type { PageQuery, BaseEntity } from '#/api/common';
export interface PersonLibVO {
/**
* 主键id
*/
id: string | number;
/**
* 人员库编码
*/
libCode: string;
/**
* 人员库名称
*/
libName: string;
/**
* 人员库描述
*/
libDesc: string;
/**
* 库类型1人员库2工服库
*/
libType: number;
/**
* 库的业务类型 1: 门禁库2: 黑名单库
*/
busiType: number;
/**
* 创建人id
*/
createById: string | number;
/**
* 更新人id
*/
updateById: string | number;
/**
* 搜索值
*/
searchValue: string;
}
export interface PersonLibForm extends BaseEntity {
/**
* 主键id
*/
id?: string | number;
/**
* 人员库编码
*/
libCode?: string;
/**
* 人员库名称
*/
libName?: string;
/**
* 人员库描述
*/
libDesc?: string;
/**
* 库类型1人员库2工服库
*/
libType?: number;
/**
* 库的业务类型 1: 门禁库2: 黑名单库
*/
busiType?: number;
/**
* 创建人id
*/
createById?: string | number;
/**
* 更新人id
*/
updateById?: string | number;
/**
* 搜索值
*/
searchValue?: string;
}
export interface PersonLibQuery extends PageQuery {
/**
* 人员库编码
*/
libCode?: string;
/**
* 人员库名称
*/
libName?: string;
/**
* 人员库描述
*/
libDesc?: string;
/**
* 库类型1人员库2工服库
*/
libType?: number;
/**
* 库的业务类型 1: 门禁库2: 黑名单库
*/
busiType?: number;
/**
* 创建人id
*/
createById?: string | number;
/**
* 更新人id
*/
updateById?: string | number;
/**
* 搜索值
*/
searchValue?: string;
/**
* 日期范围参数
*/
params?: any;
}