增加人像库

增加人像库图片
This commit is contained in:
15683799673
2025-06-24 23:55:59 +08:00
parent 85975db5ee
commit 9c08cca095
10 changed files with 1454 additions and 0 deletions

View File

@@ -0,0 +1,228 @@
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;
}