|
@@ -1,6 +1,20 @@
|
|
|
+### 登陆
|
|
|
+POST {{ ip }}/user/login
|
|
|
+Content-Type: application/json;charset=UTF-8
|
|
|
+
|
|
|
+{
|
|
|
+ "loginName": "liyongli",
|
|
|
+ "loginPassword": "9ee095c2692b48a8ab063d5e50ef35a9620b61f2748a967ed31fcd704deb6d1d"
|
|
|
+}
|
|
|
+
|
|
|
+> {%
|
|
|
+ client.global.set("token", response.body.data.token)
|
|
|
+%}
|
|
|
+
|
|
|
### 会议创建
|
|
|
POST {{ ip }}/conference/conference/create
|
|
|
Content-Type: application/json
|
|
|
+Authorization: {{token}}
|
|
|
|
|
|
{
|
|
|
"conferenceName": "数字丝路发展论坛",
|
|
@@ -19,21 +33,47 @@ Content-Type: application/json
|
|
|
"manual": "https://cxzx.smcic.net/topic/tool/pdf/%E4%B8%89%E5%86%9C%E4%B8%AD%E5%BF%83%E4%BB%8B%E7%BB%8D.pdf"
|
|
|
}
|
|
|
|
|
|
-### 会议列表
|
|
|
-GET {{ip}}/conference/conference/list
|
|
|
+### 会议修改
|
|
|
+POST {{ ip }}/conference/conference/update
|
|
|
+Content-Type: application/json
|
|
|
+Authorization: {{token}}
|
|
|
+
|
|
|
+{
|
|
|
+ "id": 1069,
|
|
|
+ "conferenceName": "数字丝路发展论坛",
|
|
|
+ "conferenceDesc": "大会介绍",
|
|
|
+ "subtitle": "副标题",
|
|
|
+ "addr": "陕西西安",
|
|
|
+ "sponsor": "主办方",
|
|
|
+ "organizer": "承办方",
|
|
|
+ "coOrganizer": "协办单位",
|
|
|
+ "cover": "大会封面图地址",
|
|
|
+ "theme": "green",
|
|
|
+ "logo": "logo",
|
|
|
+ "startTime": "2024-04-16 10:00:00",
|
|
|
+ "endTime": "2024-04-20 18:00:00",
|
|
|
+ "wxVideoUid": "微信视频号id",
|
|
|
+ "manual": "https://cxzx.smcic.net/topic/tool/pdf/%E4%B8%89%E5%86%9C%E4%B8%AD%E5%BF%83%E4%BB%8B%E7%BB%8D.pdf"
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
|
|
|
+### 会议列表,加了token只会获取自己的
|
|
|
+GET {{ip}}/conference/conference/list
|
|
|
+Authorization: {{token}}
|
|
|
+
|
|
|
### 会议查询,根据ID
|
|
|
-GET {{ip}}/conference/conference/info/1066
|
|
|
+GET {{ip}}/conference/conference/info/1067
|
|
|
|
|
|
|
|
|
### 会议配置
|
|
|
### 配置创建
|
|
|
POST {{ip}}/conference/conf/create
|
|
|
+Authorization: {{token}}
|
|
|
Content-Type: application/json
|
|
|
|
|
|
{
|
|
|
- "conferenceId": 1066,
|
|
|
+ "conferenceId": 1067,
|
|
|
"confKey": "MANUAL",
|
|
|
"confName": "会议手册",
|
|
|
"confContent": "<div>手册内容xxxxxx</div>"
|
|
@@ -41,22 +81,23 @@ Content-Type: application/json
|
|
|
|
|
|
|
|
|
### 配置列表,根据会议id查询
|
|
|
-GET {{ip}}/conference/conf/list/1066
|
|
|
+GET {{ip}}/conference/conf/list/1067
|
|
|
|
|
|
### 配置详情,根据会议id/key查询
|
|
|
-GET {{ip}}/conference/conf/info/1066/MANUAL
|
|
|
+GET {{ip}}/conference/conf/info/1067/MANUAL
|
|
|
|
|
|
### 会议服务
|
|
|
-GET {{ip}}/conference/conf/type/service/1066
|
|
|
+GET {{ip}}/conference/conf/type/service/1067
|
|
|
|
|
|
|
|
|
### 会议议程
|
|
|
### 日程添加
|
|
|
POST {{ip}}/conference/agenda/create
|
|
|
Content-Type: application/json
|
|
|
+Authorization: {{token}}
|
|
|
|
|
|
{
|
|
|
- "conferenceId": 1066,
|
|
|
+ "conferenceId": 1069,
|
|
|
"agendaName": "第一场",
|
|
|
"agendaCover": "封面地址",
|
|
|
"agendaDesc": "议程简述xxxx",
|
|
@@ -66,15 +107,38 @@ Content-Type: application/json
|
|
|
"wxVideoUid": "视频号id"
|
|
|
}
|
|
|
|
|
|
+### 日程修改
|
|
|
+POST {{ip}}/conference/agenda/update
|
|
|
+Content-Type: application/json
|
|
|
+Authorization: {{token}}
|
|
|
+
|
|
|
+{
|
|
|
+ "id": 7,
|
|
|
+ "agendaName": "第一场",
|
|
|
+ "agendaCover": "封面地址",
|
|
|
+ "agendaDesc": "议程简述xxxx",
|
|
|
+ "agendaTime": "2024-04-16 10:00",
|
|
|
+ "agendaContent": "<div>议程详细内容,xxxxxxxxxxxx</div>",
|
|
|
+ "agendaVideo": "会议视频,结束后才有",
|
|
|
+ "wxVideoUid": "视频号id"
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
### 日程列表
|
|
|
-GET {{ip}}/conference/agenda/list/1066
|
|
|
+GET {{ip}}/conference/agenda/list/1067
|
|
|
+
|
|
|
+### 日程详情,包含议程列表
|
|
|
+GET {{ip}}/conference/agenda/info/2
|
|
|
+
|
|
|
|
|
|
### 议程添加
|
|
|
POST {{ip}}/conference/agenda-detail/create
|
|
|
Content-Type: application/json
|
|
|
+Authorization: {{token}}
|
|
|
|
|
|
{
|
|
|
- "agendaId": 1,
|
|
|
+ "agendaId": 7,
|
|
|
"title": "大语言模型让我们更聪明还是更愚蠢?",
|
|
|
"speaker": "宗成庆",
|
|
|
"speakerTags": "中国科学院自动化研究所研究员",
|
|
@@ -82,22 +146,38 @@ Content-Type: application/json
|
|
|
"endTime": "2024-04-16 10:40"
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+### 议程修改
|
|
|
+POST {{ip}}/conference/agenda-detail/update
|
|
|
+Content-Type: application/json
|
|
|
+Authorization: {{token}}
|
|
|
+
|
|
|
+{
|
|
|
+ "id":52,
|
|
|
+ "title": "111大语言模型让我们更聪明还是更愚蠢?",
|
|
|
+ "speaker": "宗成庆",
|
|
|
+ "speakerTags": "中国科学院自动化研究所研究员",
|
|
|
+ "startTime": "2024-04-16 10:30",
|
|
|
+ "endTime": "2024-04-16 10:40"
|
|
|
+}
|
|
|
+
|
|
|
### 根据日程查询议程列表
|
|
|
GET {{ip}}/conference/agenda-detail/list/1
|
|
|
|
|
|
|
|
|
### 座次安排
|
|
|
-### 座次配置
|
|
|
+### 座次配置 每场日程对应一个座次安排,针对同一日程添加会覆盖原来的
|
|
|
POST {{ip}}/conference/agenda/seat/create
|
|
|
Content-Type: application/json
|
|
|
+Authorization: {{token}}
|
|
|
|
|
|
{
|
|
|
- "agendaId": 1,
|
|
|
- "content": "<img src='一张座位图' />"
|
|
|
+ "agendaId": 7,
|
|
|
+ "content": "http://cxzx.smcic.net/operate/cenference/1066/20240403/seat.jpg"
|
|
|
}
|
|
|
|
|
|
### 座次查询, 根据议程id查询
|
|
|
-GET {{ip}}/conference/agenda/seat/info/1
|
|
|
+GET {{ip}}/conference/agenda/seat/info/7
|
|
|
|
|
|
### 新闻咨询 type: 1.图文 2.视频 3.链接 4.视频号
|
|
|
### 新闻创建
|
|
@@ -105,8 +185,8 @@ POST {{ip}}/conference/news/create
|
|
|
Content-Type: application/json
|
|
|
|
|
|
{
|
|
|
- "conferenceId": 1066,
|
|
|
- "cover": "http://cxzx.smcic.net/operate/cenference/1066/20240402/70637aea795b4beaa352b18f7e5c74ba.png",
|
|
|
+ "conferenceId": 1067,
|
|
|
+ "cover": "http://cxzx.smcic.net/operate/cenference/1067/20240402/70637aea795b4beaa352b18f7e5c74ba.png",
|
|
|
"title": "世界互联网大会数字丝路发展论坛缘何落地陕西?",
|
|
|
"summary": "世界互联网大会数字丝路发展论坛缘何落地陕西?",
|
|
|
"content": "<div>中国日报网3月30日 3月27日,世界互联网大会数字丝路发展论坛发布会在北京举行。陕西省委常委、宣传部部长孙大光在接受中国日报网记者采访时表示,论坛将有助于推动陕西抢占数字经济的新蓝海,更好地融入一带一路大格局,展现开放包容的新形象。他提到,世界互联网大会数字丝路发展论坛既是一场在古丝绸之路起点,拥抱世界,畅想未来的深邃思考,同时也是一场跨越文明跨越国界的碰撞交流。</div>",
|
|
@@ -119,10 +199,10 @@ Content-Type: application/json
|
|
|
|
|
|
|
|
|
### 新闻分页
|
|
|
-GET {{ip}}/conference/news/list/1066?page=1&pageSize=20&category=
|
|
|
+GET {{ip}}/conference/news/list/1067?page=1&pageSize=20&category=
|
|
|
|
|
|
### 新闻详情
|
|
|
-GET {{ip}}/conference/news/info/1
|
|
|
+GET {{ip}}/conference/news/info/2
|
|
|
|
|
|
|
|
|
### 会议嘉宾 type类型:1.主讲嘉宾, 2.参会嘉宾,3.参会人员
|
|
@@ -131,10 +211,10 @@ POST {{ip}}/conference/guest/create
|
|
|
Content-Type: application/json
|
|
|
|
|
|
{
|
|
|
- "conferenceId": 1066,
|
|
|
+ "conferenceId": 1067,
|
|
|
"userName": "梁昊",
|
|
|
"tags": "世界互联网大会常务副秘书长",
|
|
|
- "photo": "https://cxzx.smcic.net/operate/cenference/1066/20240329/942aa221-321f-4bbc-b176-3d8d872eec36v2.jpg",
|
|
|
+ "photo": "https://cxzx.smcic.net/operate/cenference/1067/20240329/942aa221-321f-4bbc-b176-3d8d872eec36v2.jpg",
|
|
|
"sortNumber": 4,
|
|
|
"userDesc": "",
|
|
|
"userType": 1,
|
|
@@ -143,7 +223,7 @@ Content-Type: application/json
|
|
|
}
|
|
|
|
|
|
### 嘉宾查询,根据会议id和类型
|
|
|
-GET {{ip}}/conference/guest/list/1066?type=1
|
|
|
+GET {{ip}}/conference/guest/list/1067?type=1
|
|
|
|
|
|
### 根据id查询嘉宾详情
|
|
|
GET {{ip}}/conference/guest/info/2
|
|
@@ -154,16 +234,16 @@ POST {{ip}}/conference/partner/create
|
|
|
Content-Type: application/json
|
|
|
|
|
|
{
|
|
|
- "conferenceId": 1066,
|
|
|
+ "conferenceId": 1067,
|
|
|
"partnerName": "哔哩哔哩",
|
|
|
- "logo": "http://cxzx.smcic.net/operate/cenference/1066/20240401/%E5%93%94%E5%93%A9%E5%93%94%E5%93%A9.png",
|
|
|
+ "logo": "http://cxzx.smcic.net/operate/cenference/1067/20240401/%E5%93%94%E5%93%A9%E5%93%94%E5%93%A9.png",
|
|
|
"partnerType": "特别战略合作伙伴",
|
|
|
"website": "http://www.bilibili.com",
|
|
|
"sortNo": 11
|
|
|
}
|
|
|
|
|
|
### 合作伙伴查询
|
|
|
-GET {{ip}}/conference/partner/list/1066
|
|
|
+GET {{ip}}/conference/partner/list/1067
|
|
|
|
|
|
|
|
|
### 单文件上传
|
|
@@ -179,7 +259,7 @@ Content-Type: multipart/form-data
|
|
|
Content-Disposition: form-data; name="id"
|
|
|
Content-Type: text/plain
|
|
|
|
|
|
-1066
|
|
|
+1067
|
|
|
--WebAppBoundary
|
|
|
|
|
|
|
|
@@ -201,7 +281,7 @@ Content-Type: multipart/form-data
|
|
|
Content-Disposition: form-data; name="id"
|
|
|
Content-Type: text/plain
|
|
|
|
|
|
-1066
|
|
|
+1067
|
|
|
--WebAppBoundary
|
|
|
|
|
|
### 精彩视频 type: 1.小程序视频 2.视频号视频。 小程序,video是个url,如果视频号,video是俩id(fnderUserName,feedId)视频号id,视频id
|
|
@@ -209,7 +289,7 @@ POST {{ip}}/conference/live-video/create
|
|
|
Content-Type: application/json
|
|
|
|
|
|
{
|
|
|
-"conferenceId": 1066,
|
|
|
+"conferenceId": 1067,
|
|
|
"agendaId": 1,
|
|
|
"title": "精彩片段",
|
|
|
"cover": "封面",
|
|
@@ -219,19 +299,19 @@ Content-Type: application/json
|
|
|
}
|
|
|
|
|
|
### 精彩视频列表
|
|
|
-GET {{ip}}/conference/live-video/list/1066?page=1&pageSize=20
|
|
|
+GET {{ip}}/conference/live-video/list/1067?page=1&pageSize=20
|
|
|
|
|
|
### 直播图片, 批量
|
|
|
POST {{ip}}/conference/live-photo/create-batch
|
|
|
Content-Type: application/json
|
|
|
|
|
|
{
|
|
|
-"conferenceId": 1066,
|
|
|
+"conferenceId": 1067,
|
|
|
"agendaId": 1,
|
|
|
"title": "批图",
|
|
|
"photo": [
|
|
|
- "https://cxzx.smcic.net/operate/cenference/1066/20240328/1d9b500f-1785-4e22-9e77-815d21df2820v2.jpg",
|
|
|
- "https://cxzx.smcic.net/operate/cenference/1066/20240328/6b387a7c-f0f5-405a-acb1-87a93f7d6403v3.jpg"
|
|
|
+ "https://cxzx.smcic.net/operate/cenference/1067/20240328/1d9b500f-1785-4e22-9e77-815d21df2820v2.jpg",
|
|
|
+ "https://cxzx.smcic.net/operate/cenference/1067/20240328/6b387a7c-f0f5-405a-acb1-87a93f7d6403v3.jpg"
|
|
|
]
|
|
|
}
|
|
|
|
|
@@ -240,11 +320,11 @@ GET {{ip}}/conference/live-photo/list/1?page=1&pageSize=20
|
|
|
|
|
|
|
|
|
### 直播图片实时推送sse
|
|
|
-GET {{ip}}/conference/photo-sse/1066
|
|
|
+GET {{ip}}/conference/photo-sse/1067
|
|
|
|
|
|
|
|
|
### 获取手机号
|
|
|
-GET {{ip}}/conference/user-third/getPhone/1066?code=3436bbfa4ebcf3b98d79e0dda4f62f8c7312c65e11c998f4163fad2b3cada9d4
|
|
|
+GET {{ip}}/conference/user-third/getPhone/1067?code=3436bbfa4ebcf3b98d79e0dda4f62f8c7312c65e11c998f4163fad2b3cada9d4
|
|
|
|
|
|
|
|
|
### 补充用户信息
|
|
@@ -252,11 +332,11 @@ POST {{ip}}/conference/user-third/create?code=xxx
|
|
|
Content-Type: application/json
|
|
|
|
|
|
{
|
|
|
- "conferenceId": 1066,
|
|
|
+ "conferenceId": 1067,
|
|
|
"openId": "微信open_id",
|
|
|
"source": "微信",
|
|
|
"userName": "李勇利",
|
|
|
- "photo": "http://cxzx.smcic.net/operate/cenference/1066/20240402/0.png",
|
|
|
+ "photo": "http://cxzx.smcic.net/operate/cenference/1067/20240402/0.png",
|
|
|
"phone": "手机号",
|
|
|
"email": "xxx",
|
|
|
"company": "公司",
|
|
@@ -272,12 +352,12 @@ POST {{ip}}/conference/subscription/create?code=xxx
|
|
|
Content-Type: application/json
|
|
|
|
|
|
{
|
|
|
- "conferenceId": 1066,
|
|
|
+ "conferenceId": 1067,
|
|
|
"agendaId": 1,
|
|
|
"status": 1
|
|
|
}
|
|
|
|
|
|
### 我的订阅
|
|
|
-GET {{ip}}/conference/subscription/get/1066?code=xxx
|
|
|
+GET {{ip}}/conference/subscription/get/1067?code=xxx
|
|
|
|
|
|
|