嘉宾列表分页查询

## (官网-所有嘉宾)嘉宾列表分页查询 **接口地址** `/conference/smk-guests/pageList` **请求方式** `GET` **consumes** `` **produces** `["*/*"]` **接口描述** `嘉宾列表分页查询` **请求参数** | 参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | schema | | ------------ | -------------------------------- |-----------|--------|----|--- | | pageNum | 页码 | query | false | integer | | | pageSize | 步长 | query | false | integer | | **响应状态** | 状态码 | 说明 | schema | | ------------ | -------------------------------- |---------------------- | | 200 | OK |R«IPage«SmkGuests»» | | 401 | Unauthorized | | | 403 | Forbidden | | | 404 | Not Found | | **响应参数** | 参数名称 | 参数说明 | 类型 | schema | | ------------ | -------------------|-------|----------- | | code |状态码 | integer(int32) | integer(int32) | | data |承载数据 | IPage«SmkGuests» | IPage«SmkGuests» | | msg |返回消息 | string | | | success |是否成功 | boolean | | **schema属性说明** **IPage«SmkGuests»** | 参数名称 | 参数说明 | 类型 | schema | | ------------ | ------------------|--------|----------- | | current | | integer(int64) | | | hitCount | | boolean | | | pages | | integer(int64) | | | records | | array | SmkGuests | | searchCount | | boolean | | | size | | integer(int64) | | | total | | integer(int64) | | **SmkGuests** | 参数名称 | 参数说明 | 类型 | schema | | ------------ | ------------------|--------|----------- | | classes | 人群等级 | string | | | createTime | 创建时间 | string(date-time) | | | createUser | 创建人 | string | | | demartment | 所属部门 | string | | | duty | 职务/头衔 | string | | | eduty | 英文职务 | string | | | eenterprise | 英文所属企业 | string | | | eintroduction | 简介(英文) | string | | | email | 邮箱 | string | | | ename | 姓名(英文) | string | | | enterprise | 嘉宾所属企业 | string | | | etitle | 头衔(英文) | string | | | gender | 性别(中文) | string | | | global | 是否是嘉宾库嘉宾(1:是,0:不是) | string | | | guestId | 全局嘉宾id | string | | | guestTypeId | 嘉宾类型id(嘉宾分类自定义产生) | string | | | id | 主键 | integer(int32) | | | idNo | 证件号 | string | | | idType | 证件类型(1.身份证2护照3.港澳台通行证) | string | | | imageMapId | 嘉宾头像图片MapId | string | | | intro | 嘉宾简介 | string | | | introduction | 嘉宾简介(英文) | string | | | isDelete | 是否已删除 | integer(int32) | | | isPublic | 是否公开嘉宾信息(是,否) | string | | | moduleType | 所属的模块Id(0:全局,1:微信模块,2:线上会模块,3:线下会模块) | string | | | name | 嘉宾姓名 | string | | | national | 国家号 | string | | | phone | 嘉宾手机号 | string | | | ruleId | 权益规则id | string | | | seminarGuestId | 会中嘉宾id | string | | | seminarGuestType | 会议中嘉宾分类 | string | | | seminarGuestTypeId | 会议中嘉宾分类id(嘉宾分类自定义产生) | string | | | seminarId | 会议code | string | | | status | 嘉宾身份 speaker 陪同人员 | string | | | title | 头衔(英文) | string | | | updateTime | 更新时间 | string(date-time) | | | updateUser | 更新人 | string | | **响应示例** ```json { "code": 0, "data": { "current": 0, "hitCount": true, "pages": 0, "records": [ { "classes": "", "createTime": "", "createUser": "", "demartment": "", "duty": "", "eduty": "", "eenterprise": "", "eintroduction": "", "email": "", "ename": "", "enterprise": "", "etitle": "", "gender": "", "global": "", "guestId": "", "guestTypeId": "", "id": 0, "idNo": "", "idType": "", "imageMapId": "", "intro": "", "introduction": "", "isDelete": 0, "isPublic": "", "moduleType": "", "name": "", "national": "", "phone": "", "ruleId": "", "seminarGuestId": "", "seminarGuestType": "", "seminarGuestTypeId": "", "seminarId": "", "status": "", "title": "", "updateTime": "", "updateUser": "" } ], "searchCount": true, "size": 0, "total": 0 }, "msg": "", "success": true } ```