Files
admin-vben5/apps/web-antd/src/api/sis/personLibImg/model.d.ts
zcxlsm ebf12ac233
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
refactor(sis): 人像添加同步关联多个人像库
2025-07-14 17:17:27 +08:00

191 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { BaseEntity, PageQuery } from '#/api/common';
export interface PersonLibImgVO {
/**
* 主键id
*/
id: number | string;
/**
* 人员库编码
*/
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
*/
id?: number | string;
/**
* 人员库编码
*/
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 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;
/**
* 搜索值
*/
searchValue?: string;
/**
* 日期范围参数
*/
params?: any;
}