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

191 lines
2.2 KiB
TypeScript
Raw Normal View History

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