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

229 lines
2.6 KiB
TypeScript
Raw Normal View History

2025-06-24 23:55:59 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface PersonLibImgVO {
/**
* id
*/
id: string | number;
/**
*
*/
libCode: string;
/**
*
*/
imgName: string;
/**
*
*/
imgCode: string;
/**
*
*/
imgUrl: string;
/**
* 1
2 99
*/
sex: number;
/**
*
*/
email: string;
/**
*
*/
tel: string;
/**
*
1 2
3 99
*/
certificateType: number;
/**
*
*/
certificateNo: string;
/**
*
*/
birthDate: string;
/**
* id
*/
createById: string | number;
/**
* id
*/
updateById: string | number;
/**
*
*/
searchValue: string;
}
export interface PersonLibImgForm extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
*
*/
libCode?: string;
/**
*
*/
imgName?: string;
/**
*
*/
imgCode?: string;
/**
*
*/
imgUrl?: string;
/**
* 1
2 99
*/
sex?: number;
/**
*
*/
email?: string;
/**
*
*/
tel?: string;
/**
*
1 2
3 99
*/
certificateType?: number;
/**
*
*/
certificateNo?: string;
/**
*
*/
birthDate?: string;
/**
* id
*/
createById?: string | number;
/**
* id
*/
updateById?: string | number;
/**
*
*/
searchValue?: string;
}
export interface PersonLibImgQuery extends PageQuery {
/**
*
*/
libCode?: string;
/**
*
*/
imgName?: string;
/**
*
*/
imgCode?: string;
/**
*
*/
imgUrl?: string;
/**
* 1
2 99
*/
sex?: number;
/**
*
*/
email?: string;
/**
*
*/
tel?: string;
/**
*
1 2
3 99
*/
certificateType?: number;
/**
*
*/
certificateNo?: string;
/**
*
*/
birthDate?: string;
/**
* id
*/
createById?: string | number;
/**
* id
*/
updateById?: string | number;
/**
*
*/
searchValue?: string;
/**
*
*/
params?: any;
}