145 lines
1.8 KiB
TypeScript
145 lines
1.8 KiB
TypeScript
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;
|
||
}
|