Files
admin-vben5/apps/web-antd/src/api/sis/personLib/model.d.ts

145 lines
1.8 KiB
TypeScript
Raw Normal View History

2025-06-24 23:55:59 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface PersonLibVO {
/**
* id
*/
id: string | number;
/**
*
*/
libCode: string;
/**
*
*/
libName: string;
/**
*
*/
libDesc: string;
/**
* 12
*/
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;
/**
* 12
*/
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;
/**
* 12
*/
libType?: number;
/**
* 1: 门禁库2: 黑名单库
*/
busiType?: number;
/**
* id
*/
createById?: string | number;
/**
* id
*/
updateById?: string | number;
/**
*
*/
searchValue?: string;
/**
*
*/
params?: any;
}