Files
admin-vben5/apps/web-antd/src/api/sis/personLib/model.d.ts
15683799673 9c08cca095 增加人像库
增加人像库图片
2025-06-24 23:55:59 +08:00

145 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}