增加人像库
增加人像库图片
This commit is contained in:
144
apps/web-antd/src/api/sis/personLib/model.d.ts
vendored
Normal file
144
apps/web-antd/src/api/sis/personLib/model.d.ts
vendored
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user