增加人像库
增加人像库图片
This commit is contained in:
228
apps/web-antd/src/api/sis/personLibImg/model.d.ts
vendored
Normal file
228
apps/web-antd/src/api/sis/personLibImg/model.d.ts
vendored
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user