|
@@ -113,3 +113,93 @@ Content-Type: application/json
|
|
|
|
|
|
### 嘉宾查询,根据会议id和类型
|
|
|
GET {{ip}}/conference/guest/list/1066?type=1
|
|
|
+
|
|
|
+
|
|
|
+### 合作伙伴
|
|
|
+### 合作伙伴创建
|
|
|
+POST {{ip}}/conference/partner/create
|
|
|
+Content-Type: application/json
|
|
|
+
|
|
|
+{
|
|
|
+ "conferenceId": 1066,
|
|
|
+ "partnerName": "人民网",
|
|
|
+ "logo": "http://logo",
|
|
|
+ "partnerType": "战略合作媒体",
|
|
|
+ "website": "http://官网",
|
|
|
+ "sortNo": 100
|
|
|
+}
|
|
|
+
|
|
|
+### 合作伙伴查询
|
|
|
+GET {{ip}}/conference/partner/list/1066
|
|
|
+
|
|
|
+
|
|
|
+### 单文件上传
|
|
|
+POST {{ip}}/conference/conference/upload
|
|
|
+Content-Type: multipart/form-data; boundary=WebAppBoundary
|
|
|
+
|
|
|
+--WebAppBoundary
|
|
|
+Content-Disposition: form-data; name="file"; filename="v2.jpg"
|
|
|
+Content-Type: multipart/form-data
|
|
|
+
|
|
|
+< C:\Users\admin\Pictures\v2-a76668f37af2f88b3cf5b3a90b5dc9ce_b.jpg
|
|
|
+--WebAppBoundary
|
|
|
+Content-Disposition: form-data; name="id"
|
|
|
+Content-Type: text/plain
|
|
|
+
|
|
|
+1066
|
|
|
+--WebAppBoundary
|
|
|
+
|
|
|
+
|
|
|
+### 多文件上传
|
|
|
+POST {{ip}}/conference/conference/multi-upload
|
|
|
+Content-Type: multipart/form-data; boundary=WebAppBoundary
|
|
|
+
|
|
|
+--WebAppBoundary
|
|
|
+Content-Disposition: form-data; name="files"; filename="v2.jpg"
|
|
|
+Content-Type: multipart/form-data
|
|
|
+
|
|
|
+< C:\Users\admin\Pictures\v2-a76668f37af2f88b3cf5b3a90b5dc9ce_b.jpg
|
|
|
+--WebAppBoundary
|
|
|
+Content-Disposition: form-data; name="files"; filename="v3.jpg"
|
|
|
+Content-Type: multipart/form-data
|
|
|
+
|
|
|
+< C:\Users\admin\Pictures\v2-a76668f37af2f88b3cf5b3a90b5dc9ce_b.jpg
|
|
|
+--WebAppBoundary
|
|
|
+Content-Disposition: form-data; name="id"
|
|
|
+Content-Type: text/plain
|
|
|
+
|
|
|
+1066
|
|
|
+--WebAppBoundary
|
|
|
+
|
|
|
+### 精彩视频
|
|
|
+POST {{ip}}/conference/live-video/create
|
|
|
+Content-Type: application/json
|
|
|
+
|
|
|
+{
|
|
|
+"conferenceId": 1066,
|
|
|
+ "agendaId": 1,
|
|
|
+ "title": "精彩片段",
|
|
|
+ "cover": "封面",
|
|
|
+ "video": "视频",
|
|
|
+ "isTop": 1
|
|
|
+}
|
|
|
+
|
|
|
+### 精彩视频列表
|
|
|
+GET {{ip}}/conference/live-video/list/1066?page=1&pageSize=20
|
|
|
+
|
|
|
+### 直播图片, 批量
|
|
|
+POST {{ip}}/conference/live-photo/create-batch
|
|
|
+Content-Type: application/json
|
|
|
+
|
|
|
+{
|
|
|
+"conferenceId": 1066,
|
|
|
+ "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"
|
|
|
+ ]
|
|
|
+}
|
|
|
+
|
|
|
+### 直播图片获取/conference/live-photo/list/{{id}}
|
|
|
+GET {{ip}}/conference/live-photo/list/1066?page=1&pageSize=20
|