yangchenggong1_wd

desc:删除本地缓存,处理个人中心 token 失效

Showing 30 changed files with 64 additions and 4183 deletions

Too many changes to show.

To preserve performance only 30 of 30+ files are displayed.

@@ -742,7 +742,7 @@ export class HttpUrlUtils { @@ -742,7 +742,7 @@ export class HttpUrlUtils {
742 } 742 }
743 743
744 static getSearchHotsDataUrl() { 744 static getSearchHotsDataUrl() {
745 - let url = HttpUrlUtils.HOST_SIT + HttpUrlUtils.SEARCH_HOTS_DATA_PATH 745 + let url = HttpUrlUtils._hostUrl + HttpUrlUtils.SEARCH_HOTS_DATA_PATH
746 return url 746 return url
747 } 747 }
748 748
1 -import { Logger, StringUtils, UserDataLocal } from 'wdKit' 1 +import { StringUtils, UserDataLocal } from 'wdKit'
2 import { WDRouterPage, WDRouterRule } from 'wdRouter' 2 import { WDRouterPage, WDRouterRule } from 'wdRouter'
3 import MinePageDatasModel from '../../model/MinePageDatasModel' 3 import MinePageDatasModel from '../../model/MinePageDatasModel'
4 const TAG = "MinePageUserSimpleInfoUI" 4 const TAG = "MinePageUserSimpleInfoUI"
@@ -4,6 +4,8 @@ import { ListHasNoMoreDataUI } from '../../reusable/ListHasNoMoreDataUI'; @@ -4,6 +4,8 @@ import { ListHasNoMoreDataUI } from '../../reusable/ListHasNoMoreDataUI';
4 import { MineAppointmentItem } from '../../../viewmodel/MineAppointmentItem'; 4 import { MineAppointmentItem } from '../../../viewmodel/MineAppointmentItem';
5 import { LazyDataSource, StringUtils } from 'wdKit'; 5 import { LazyDataSource, StringUtils } from 'wdKit';
6 import MinePageDatasModel from '../../../model/MinePageDatasModel'; 6 import MinePageDatasModel from '../../../model/MinePageDatasModel';
  7 +import { EmptyComponent } from '../../view/EmptyComponent';
  8 +
7 const TAG = "AppointmentListUI" 9 const TAG = "AppointmentListUI"
8 10
9 @Component 11 @Component
@@ -23,7 +25,9 @@ export struct AppointmentListUI{ @@ -23,7 +25,9 @@ export struct AppointmentListUI{
23 //标题栏目 25 //标题栏目
24 CustomTitleUI({titleName:"预约列表"}) 26 CustomTitleUI({titleName:"预约列表"})
25 if(this.count == 0){ 27 if(this.count == 0){
26 - ListHasNoMoreDataUI({style:2}) 28 + EmptyComponent({emptyType:10})
  29 + .height('100%')
  30 + .width('100%')
27 }else{ 31 }else{
28 //刷新控件 TODO 32 //刷新控件 TODO
29 //List 33 //List
@@ -84,6 +88,8 @@ export struct AppointmentListUI{ @@ -84,6 +88,8 @@ export struct AppointmentListUI{
84 this.hasMore = false 88 this.hasMore = false
85 } 89 }
86 } 90 }
  91 + }).catch((err:Error)=>{
  92 + console.log(TAG,JSON.stringify(err))
87 }) 93 })
88 } 94 }
89 this.isLoading = false 95 this.isLoading = false
@@ -50,7 +50,7 @@ export struct MinePageComponent { @@ -50,7 +50,7 @@ export struct MinePageComponent {
50 //个人功能数据 50 //个人功能数据
51 this.personalData = MinePageDatasModel.getPersonalFunctionsData() 51 this.personalData = MinePageDatasModel.getPersonalFunctionsData()
52 //创作者功能数据 52 //创作者功能数据
53 - this.creatorData = MinePageDatasModel.getCreatorFunctionsData() 53 + // this.creatorData = MinePageDatasModel.getCreatorFunctionsData()
54 //更多功能数据 54 //更多功能数据
55 this.moreData = MinePageDatasModel.getMoreFunctionsData() 55 this.moreData = MinePageDatasModel.getMoreFunctionsData()
56 } 56 }
@@ -23,6 +23,9 @@ export struct SearchHotsComponent{ @@ -23,6 +23,9 @@ export struct SearchHotsComponent{
23 } 23 }
24 }).catch((err:Error)=>{ 24 }).catch((err:Error)=>{
25 console.log(TAG,JSON.stringify(err)) 25 console.log(TAG,JSON.stringify(err))
  26 + if(this.searchHotsData.length === 0){
  27 + this.searchHotsData.push(new SearchHotContentItem("二十大",0,1))
  28 + }
26 }) 29 })
27 } 30 }
28 31
@@ -118,7 +118,7 @@ class MinePageDatasModel{ @@ -118,7 +118,7 @@ class MinePageDatasModel{
118 Logger.info(TAG, `getAppointmentList start`); 118 Logger.info(TAG, `getAppointmentList start`);
119 this.fetchAppointmentListData(pageSize,pageNum).then((navResDTO: ResponseDTO<MineAppointmentListItem>) => { 119 this.fetchAppointmentListData(pageSize,pageNum).then((navResDTO: ResponseDTO<MineAppointmentListItem>) => {
120 if (!navResDTO || navResDTO.code != 0) { 120 if (!navResDTO || navResDTO.code != 0) {
121 - success(this.getAppointmentListDataLocal(context)) 121 + error(null)
122 return 122 return
123 } 123 }
124 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 124 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
@@ -126,22 +126,11 @@ class MinePageDatasModel{ @@ -126,22 +126,11 @@ class MinePageDatasModel{
126 success(navigationBean); 126 success(navigationBean);
127 }).catch((err: Error) => { 127 }).catch((err: Error) => {
128 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 128 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
129 - success(this.getAppointmentListDataLocal(context)) 129 + error(null)
130 }) 130 })
131 }) 131 })
132 } 132 }
133 133
134 - async getAppointmentListDataLocal(context: Context): Promise<MineAppointmentListItem> {  
135 - Logger.info(TAG, `getBottomNavDataMock start`);  
136 - let compRes: ResponseDTO<MineAppointmentListItem> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<MineAppointmentListItem>>(context,'appointment_list_data.json' );  
137 - if (!compRes || !compRes.data) {  
138 - Logger.info(TAG, `getAppointmentListDataLocal compRes is empty`);  
139 - return new MineAppointmentListItem()  
140 - }  
141 - Logger.info(TAG, `getAppointmentListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
142 - return compRes.data  
143 - }  
144 -  
145 /** 134 /**
146 * 关注频道详情 135 * 关注频道详情
147 * @param pageSize 136 * @param pageSize
@@ -154,7 +143,7 @@ class MinePageDatasModel{ @@ -154,7 +143,7 @@ class MinePageDatasModel{
154 Logger.info(TAG, `getAppointmentList start`); 143 Logger.info(TAG, `getAppointmentList start`);
155 this.fetchFollowListDetailData(params).then((navResDTO: ResponseDTO<MineFollowListDetailItem>) => { 144 this.fetchFollowListDetailData(params).then((navResDTO: ResponseDTO<MineFollowListDetailItem>) => {
156 if (!navResDTO || navResDTO.code != 0) { 145 if (!navResDTO || navResDTO.code != 0) {
157 - success(this.getFollowListDetailDataLocal(context)) 146 + error(null)
158 return 147 return
159 } 148 }
160 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 149 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
@@ -162,22 +151,11 @@ class MinePageDatasModel{ @@ -162,22 +151,11 @@ class MinePageDatasModel{
162 success(navigationBean); 151 success(navigationBean);
163 }).catch((err: Error) => { 152 }).catch((err: Error) => {
164 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 153 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
165 - success(this.getFollowListDetailDataLocal(context)) 154 + error(null)
166 }) 155 })
167 }) 156 })
168 } 157 }
169 158
170 - async getFollowListDetailDataLocal(context: Context): Promise<MineFollowListDetailItem> {  
171 - Logger.info(TAG, `getBottomNavDataMock start`);  
172 - let compRes: ResponseDTO<MineFollowListDetailItem> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<MineFollowListDetailItem>>(context,'follow_list_detail_data_id120.json' );  
173 - if (!compRes || !compRes.data) {  
174 - Logger.info(TAG, `getAppointmentListDataLocal compRes is empty`);  
175 - return new MineFollowListDetailItem()  
176 - }  
177 - Logger.info(TAG, `getAppointmentListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
178 - return compRes.data  
179 - }  
180 -  
181 fetchFollowListDetailData(object:FollowListDetailRequestItem) { 159 fetchFollowListDetailData(object:FollowListDetailRequestItem) {
182 let url = HttpUrlUtils.getFollowListDetailDataUrl() 160 let url = HttpUrlUtils.getFollowListDetailDataUrl()
183 let headers: HashMap<string, string> = HttpUrlUtils.getCommonHeaders(); 161 let headers: HashMap<string, string> = HttpUrlUtils.getCommonHeaders();
@@ -199,7 +177,7 @@ class MinePageDatasModel{ @@ -199,7 +177,7 @@ class MinePageDatasModel{
199 Logger.info(TAG, `getAppointmentList start`); 177 Logger.info(TAG, `getAppointmentList start`);
200 this.fetchFollowListData().then((navResDTO: ResponseDTO<FollowListItem[]>) => { 178 this.fetchFollowListData().then((navResDTO: ResponseDTO<FollowListItem[]>) => {
201 if (!navResDTO || navResDTO.code != 0) { 179 if (!navResDTO || navResDTO.code != 0) {
202 - success(this.getFollowListDataLocal(context)) 180 + error(null)
203 return 181 return
204 } 182 }
205 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 183 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
@@ -207,21 +185,11 @@ class MinePageDatasModel{ @@ -207,21 +185,11 @@ class MinePageDatasModel{
207 success(navigationBean); 185 success(navigationBean);
208 }).catch((err: Error) => { 186 }).catch((err: Error) => {
209 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 187 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
210 - success(this.getFollowListDataLocal(context)) 188 + error(null)
211 }) 189 })
212 }) 190 })
213 } 191 }
214 192
215 - async getFollowListDataLocal(context: Context): Promise<FollowListItem[]> {  
216 - Logger.info(TAG, `getFollowListDataLocal start`);  
217 - let compRes: ResponseDTO<FollowListItem[]> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<FollowListItem[]>>(context,'follow_list_data.json' );  
218 - if (!compRes || !compRes.data) {  
219 - Logger.info(TAG, `getFollowListDataLocal compRes is empty`);  
220 - return []  
221 - }  
222 - Logger.info(TAG, `getFollowListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
223 - return compRes.data  
224 - }  
225 193
226 /** 194 /**
227 * 我的关注列表 195 * 我的关注列表
@@ -234,7 +202,7 @@ class MinePageDatasModel{ @@ -234,7 +202,7 @@ class MinePageDatasModel{
234 Logger.info(TAG, `getAppointmentList start`); 202 Logger.info(TAG, `getAppointmentList start`);
235 this.fetchMineDetailFollowListData(params).then((navResDTO: ResponseDTO<MineFollowListItem>) => { 203 this.fetchMineDetailFollowListData(params).then((navResDTO: ResponseDTO<MineFollowListItem>) => {
236 if (!navResDTO || navResDTO.code != 0) { 204 if (!navResDTO || navResDTO.code != 0) {
237 - success(this.getMineFollowListDataLocal(context)) 205 + error(null)
238 return 206 return
239 } 207 }
240 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 208 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
@@ -242,7 +210,7 @@ class MinePageDatasModel{ @@ -242,7 +210,7 @@ class MinePageDatasModel{
242 success(navigationBean); 210 success(navigationBean);
243 }).catch((err: Error) => { 211 }).catch((err: Error) => {
244 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 212 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
245 - success(this.getMineFollowListDataLocal(context)) 213 + error(null)
246 }) 214 })
247 }) 215 })
248 } 216 }
@@ -253,17 +221,6 @@ class MinePageDatasModel{ @@ -253,17 +221,6 @@ class MinePageDatasModel{
253 return WDHttp.get<ResponseDTO<MineFollowListItem>>(url, headers) 221 return WDHttp.get<ResponseDTO<MineFollowListItem>>(url, headers)
254 }; 222 };
255 223
256 - async getMineFollowListDataLocal(context: Context): Promise<MineFollowListItem> {  
257 - Logger.info(TAG, `getMineFollowListDataLocal start`);  
258 - let compRes: ResponseDTO<MineFollowListItem> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<MineFollowListItem>>(context,'mine_follow_list_data.json' );  
259 - if (!compRes || !compRes.data) {  
260 - Logger.info(TAG, `getMineFollowListDataLocal compRes is empty`);  
261 - return new MineFollowListItem()  
262 - }  
263 - Logger.info(TAG, `getMineFollowListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
264 - return compRes.data  
265 - }  
266 -  
267 /** 224 /**
268 * 查询是否被关注 列表 225 * 查询是否被关注 列表
269 * @param params 226 * @param params
@@ -275,7 +232,7 @@ class MinePageDatasModel{ @@ -275,7 +232,7 @@ class MinePageDatasModel{
275 Logger.info(TAG, `getAppointmentList start`); 232 Logger.info(TAG, `getAppointmentList start`);
276 this.fetchFollowListStatusData(params).then((navResDTO: ResponseDTO<QueryListIsFollowedItem[]>) => { 233 this.fetchFollowListStatusData(params).then((navResDTO: ResponseDTO<QueryListIsFollowedItem[]>) => {
277 if (!navResDTO || navResDTO.code != 0) { 234 if (!navResDTO || navResDTO.code != 0) {
278 - success(this.getFollowListStatusDataLocal(context)) 235 + error(null)
279 return 236 return
280 } 237 }
281 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 238 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
@@ -283,7 +240,7 @@ class MinePageDatasModel{ @@ -283,7 +240,7 @@ class MinePageDatasModel{
283 success(navigationBean); 240 success(navigationBean);
284 }).catch((err: Error) => { 241 }).catch((err: Error) => {
285 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 242 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
286 - success(this.getFollowListStatusDataLocal(context)) 243 + error(null)
287 }) 244 })
288 }) 245 })
289 } 246 }
@@ -294,18 +251,6 @@ class MinePageDatasModel{ @@ -294,18 +251,6 @@ class MinePageDatasModel{
294 return WDHttp.post<ResponseDTO<QueryListIsFollowedItem[]>>(url,object, headers) 251 return WDHttp.post<ResponseDTO<QueryListIsFollowedItem[]>>(url,object, headers)
295 }; 252 };
296 253
297 - async getFollowListStatusDataLocal(context: Context): Promise<QueryListIsFollowedItem[]> {  
298 - Logger.info(TAG, `getMineFollowListDataLocal start`);  
299 - let compRes: ResponseDTO<QueryListIsFollowedItem[]> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<QueryListIsFollowedItem[]>>(context,'follow_list_id120_isfocus_data.json' );  
300 - if (!compRes || !compRes.data) {  
301 - Logger.info(TAG, `getMineFollowListDataLocal compRes is empty`);  
302 - return []  
303 - }  
304 - Logger.info(TAG, `getMineFollowListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
305 - return compRes.data  
306 - }  
307 -  
308 -  
309 /** 254 /**
310 * 我的评论列表 255 * 我的评论列表
311 * @param params 256 * @param params
@@ -317,16 +262,15 @@ class MinePageDatasModel{ @@ -317,16 +262,15 @@ class MinePageDatasModel{
317 Logger.info(TAG, `getAppointmentList start`); 262 Logger.info(TAG, `getAppointmentList start`);
318 this.fetchMineCommentListData(time,params).then((navResDTO: ResponseDTO<MineCommentListDetailItem>) => { 263 this.fetchMineCommentListData(time,params).then((navResDTO: ResponseDTO<MineCommentListDetailItem>) => {
319 if (!navResDTO || navResDTO.code != 0) { 264 if (!navResDTO || navResDTO.code != 0) {
320 - success(this.getMineCommentListDataLocal(context)) 265 + error(null)
321 return 266 return
322 } 267 }
323 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 268 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
324 let navigationBean = navResDTO.data as MineCommentListDetailItem 269 let navigationBean = navResDTO.data as MineCommentListDetailItem
325 success(navigationBean); 270 success(navigationBean);
326 - // success(this.getMineCommentListDataLocal(context))  
327 }).catch((err: Error) => { 271 }).catch((err: Error) => {
328 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 272 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
329 - success(this.getMineCommentListDataLocal(context)) 273 + error(null)
330 }) 274 })
331 }) 275 })
332 } 276 }
@@ -337,16 +281,6 @@ class MinePageDatasModel{ @@ -337,16 +281,6 @@ class MinePageDatasModel{
337 return WDHttp.get<ResponseDTO<MineCommentListDetailItem>>(url, headers) 281 return WDHttp.get<ResponseDTO<MineCommentListDetailItem>>(url, headers)
338 }; 282 };
339 283
340 - async getMineCommentListDataLocal(context: Context): Promise<MineCommentListDetailItem> {  
341 - Logger.info(TAG, `getMineFollowListDataLocal start`);  
342 - let compRes: ResponseDTO<MineCommentListDetailItem> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<MineCommentListDetailItem>>(context,'mine_comment_list_data2.json' );  
343 - if (!compRes || !compRes.data) {  
344 - Logger.info(TAG, `getMineFollowListDataLocal compRes is empty`);  
345 - return new MineCommentListDetailItem()  
346 - }  
347 - Logger.info(TAG, `getMineFollowListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
348 - return compRes.data  
349 - }  
350 284
351 /** 285 /**
352 * 个人中心 获取用户等级 286 * 个人中心 获取用户等级
@@ -356,7 +290,7 @@ class MinePageDatasModel{ @@ -356,7 +290,7 @@ class MinePageDatasModel{
356 Logger.info(TAG, `getAppointmentList start`); 290 Logger.info(TAG, `getAppointmentList start`);
357 this.fetchMineUserLevelData().then((navResDTO: ResponseDTO<MineUserLevelItem>) => { 291 this.fetchMineUserLevelData().then((navResDTO: ResponseDTO<MineUserLevelItem>) => {
358 if (!navResDTO || navResDTO.code != 0) { 292 if (!navResDTO || navResDTO.code != 0) {
359 - success(this.getMineUserLevelDataLocal(context)) 293 + error(null)
360 return 294 return
361 } 295 }
362 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 296 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
@@ -364,7 +298,7 @@ class MinePageDatasModel{ @@ -364,7 +298,7 @@ class MinePageDatasModel{
364 success(navigationBean); 298 success(navigationBean);
365 }).catch((err: Error) => { 299 }).catch((err: Error) => {
366 Logger.error(TAG, `fetchMineUserLevelData catch, error.name : ${err.name}, error.message:${err.message}`); 300 Logger.error(TAG, `fetchMineUserLevelData catch, error.name : ${err.name}, error.message:${err.message}`);
367 - success(this.getMineUserLevelDataLocal(context)) 301 + error(null)
368 }) 302 })
369 }) 303 })
370 } 304 }
@@ -376,17 +310,6 @@ class MinePageDatasModel{ @@ -376,17 +310,6 @@ class MinePageDatasModel{
376 return HttpBizUtil.get<ResponseDTO<MineUserLevelItem>>(url, headers) 310 return HttpBizUtil.get<ResponseDTO<MineUserLevelItem>>(url, headers)
377 }; 311 };
378 312
379 - async getMineUserLevelDataLocal(context: Context): Promise<MineUserLevelItem> {  
380 - Logger.info(TAG, `getMineUserLevelDataLocal start`);  
381 - let compRes: ResponseDTO<MineUserLevelItem> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<MineUserLevelItem>>(context,'mine_user_level.json' );  
382 - if (!compRes || !compRes.data) {  
383 - Logger.info(TAG, `getMineUserLevelDataLocal compRes is empty`);  
384 - return new MineUserLevelItem()  
385 - }  
386 - Logger.info(TAG, `getMineUserLevelDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
387 - return compRes.data  
388 - }  
389 -  
390 /** 313 /**
391 * 个人中心 获取用户详细信息 314 * 个人中心 获取用户详细信息
392 */ 315 */
@@ -395,7 +318,7 @@ class MinePageDatasModel{ @@ -395,7 +318,7 @@ class MinePageDatasModel{
395 Logger.info(TAG, `getAppointmentList start`); 318 Logger.info(TAG, `getAppointmentList start`);
396 this.fetchMineUserDetailData().then((navResDTO: ResponseDTO<MineUserDetailItem>) => { 319 this.fetchMineUserDetailData().then((navResDTO: ResponseDTO<MineUserDetailItem>) => {
397 if (!navResDTO || navResDTO.code != 0) { 320 if (!navResDTO || navResDTO.code != 0) {
398 - success(this.getMineUserDetailDataLocal(context)) 321 + error(null)
399 return 322 return
400 } 323 }
401 Logger.info(TAG, "getUserDetailData then,timeStamp:" + navResDTO.timestamp); 324 Logger.info(TAG, "getUserDetailData then,timeStamp:" + navResDTO.timestamp);
@@ -403,7 +326,7 @@ class MinePageDatasModel{ @@ -403,7 +326,7 @@ class MinePageDatasModel{
403 success(navigationBean); 326 success(navigationBean);
404 }).catch((err: Error) => { 327 }).catch((err: Error) => {
405 Logger.error(TAG, `fetchMineUserDetailData catch, error.name : ${err.name}, error.message:${err.message}`); 328 Logger.error(TAG, `fetchMineUserDetailData catch, error.name : ${err.name}, error.message:${err.message}`);
406 - success(this.getMineUserDetailDataLocal(context)) 329 + error(null)
407 }) 330 })
408 }) 331 })
409 } 332 }
@@ -415,16 +338,7 @@ class MinePageDatasModel{ @@ -415,16 +338,7 @@ class MinePageDatasModel{
415 return HttpBizUtil.get<ResponseDTO<MineUserDetailItem>>(url, headers) 338 return HttpBizUtil.get<ResponseDTO<MineUserDetailItem>>(url, headers)
416 }; 339 };
417 340
418 - async getMineUserDetailDataLocal(context: Context): Promise<MineUserDetailItem> {  
419 - Logger.info(TAG, `getMineUserLevelDataLocal start`);  
420 - let compRes: ResponseDTO<MineUserDetailItem> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<MineUserDetailItem>>(context,'mine_user_detail.json' );  
421 - if (!compRes || !compRes.data) {  
422 - Logger.info(TAG, `getMineUserDetailDataLocal compRes is empty`);  
423 - return new MineUserDetailItem()  
424 - }  
425 - Logger.info(TAG, `getMineUserDetailDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
426 - return compRes.data  
427 - } 341 +
428 /** 342 /**
429 * 个人中心 获取其他用户详细信息 343 * 个人中心 获取其他用户详细信息
430 */ 344 */
@@ -433,7 +347,7 @@ class MinePageDatasModel{ @@ -433,7 +347,7 @@ class MinePageDatasModel{
433 Logger.info(TAG, `getAppointmentList start`); 347 Logger.info(TAG, `getAppointmentList start`);
434 this.fetchOtherUserDetailData(item).then((navResDTO: ResponseDTO<MineUserDetailItem>) => { 348 this.fetchOtherUserDetailData(item).then((navResDTO: ResponseDTO<MineUserDetailItem>) => {
435 if (!navResDTO || navResDTO.code != 0) { 349 if (!navResDTO || navResDTO.code != 0) {
436 - success(this.getOtherUserDetailDataLocal(context)) 350 + error(null)
437 return 351 return
438 } 352 }
439 Logger.info(TAG, "getUserDetailData then,timeStamp:" + navResDTO.timestamp); 353 Logger.info(TAG, "getUserDetailData then,timeStamp:" + navResDTO.timestamp);
@@ -441,7 +355,7 @@ class MinePageDatasModel{ @@ -441,7 +355,7 @@ class MinePageDatasModel{
441 success(navigationBean); 355 success(navigationBean);
442 }).catch((err: Error) => { 356 }).catch((err: Error) => {
443 Logger.error(TAG, `fetchMineUserDetailData catch, error.name : ${err.name}, error.message:${err.message}`); 357 Logger.error(TAG, `fetchMineUserDetailData catch, error.name : ${err.name}, error.message:${err.message}`);
444 - success(this.getOtherUserDetailDataLocal(context)) 358 + error(null)
445 }) 359 })
446 }) 360 })
447 } 361 }
@@ -452,17 +366,6 @@ class MinePageDatasModel{ @@ -452,17 +366,6 @@ class MinePageDatasModel{
452 return WDHttp.post<ResponseDTO<MineUserDetailItem>>(url, item,headers) 366 return WDHttp.post<ResponseDTO<MineUserDetailItem>>(url, item,headers)
453 }; 367 };
454 368
455 - async getOtherUserDetailDataLocal(context: Context): Promise<MineUserDetailItem> {  
456 - Logger.info(TAG, `getMineUserLevelDataLocal start`);  
457 - let compRes: ResponseDTO<MineUserDetailItem> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<MineUserDetailItem>>(context,'other_user512157124138245_detail.json' );  
458 - if (!compRes || !compRes.data) {  
459 - Logger.info(TAG, `getMineUserDetailDataLocal compRes is empty`);  
460 - return new MineUserDetailItem()  
461 - }  
462 - Logger.info(TAG, `getMineUserDetailDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
463 - return compRes.data  
464 - }  
465 -  
466 /** 369 /**
467 * 个人中心 获取其他用户等级 370 * 个人中心 获取其他用户等级
468 */ 371 */
@@ -471,7 +374,7 @@ class MinePageDatasModel{ @@ -471,7 +374,7 @@ class MinePageDatasModel{
471 Logger.info(TAG, `getAppointmentList start`); 374 Logger.info(TAG, `getAppointmentList start`);
472 this.fetchOtherUserLevelData(item).then((navResDTO: ResponseDTO<MineUserLevelItem[]>) => { 375 this.fetchOtherUserLevelData(item).then((navResDTO: ResponseDTO<MineUserLevelItem[]>) => {
473 if (!navResDTO || navResDTO.code != 0) { 376 if (!navResDTO || navResDTO.code != 0) {
474 - success(this.getOtherUserLevelDataLocal(context)) 377 + error(null)
475 return 378 return
476 } 379 }
477 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 380 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
@@ -479,11 +382,11 @@ class MinePageDatasModel{ @@ -479,11 +382,11 @@ class MinePageDatasModel{
479 if(navigationBean.length>0 && StringUtils.isNotEmpty(navigationBean[0].levelHead)){ 382 if(navigationBean.length>0 && StringUtils.isNotEmpty(navigationBean[0].levelHead)){
480 success(navigationBean); 383 success(navigationBean);
481 }else{ 384 }else{
482 - success(this.getOtherUserLevelDataLocal(context)) 385 + error(null)
483 } 386 }
484 }).catch((err: Error) => { 387 }).catch((err: Error) => {
485 Logger.error(TAG, `fetchMineUserLevelData catch, error.name : ${err.name}, error.message:${err.message}`); 388 Logger.error(TAG, `fetchMineUserLevelData catch, error.name : ${err.name}, error.message:${err.message}`);
486 - success(this.getOtherUserLevelDataLocal(context)) 389 + error(null)
487 }) 390 })
488 }) 391 })
489 } 392 }
@@ -494,17 +397,6 @@ class MinePageDatasModel{ @@ -494,17 +397,6 @@ class MinePageDatasModel{
494 return WDHttp.post<ResponseDTO<MineUserLevelItem[]>>(url,item, headers) 397 return WDHttp.post<ResponseDTO<MineUserLevelItem[]>>(url,item, headers)
495 }; 398 };
496 399
497 - async getOtherUserLevelDataLocal(context: Context): Promise<MineUserLevelItem[]> {  
498 - Logger.info(TAG, `getMineUserLevelDataLocal start`);  
499 - let compRes: ResponseDTO<MineUserLevelItem[]> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<MineUserLevelItem[]>>(context,'other_user512157124138245_level.json' );  
500 - if (!compRes || !compRes.data) {  
501 - Logger.info(TAG, `getMineUserLevelDataLocal compRes is empty`);  
502 - return []  
503 - }  
504 - Logger.info(TAG, `getMineUserLevelDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
505 - return compRes.data  
506 - }  
507 -  
508 /** 400 /**
509 * 其他用户的评论列表 401 * 其他用户的评论列表
510 * @param params 402 * @param params
@@ -516,7 +408,7 @@ class MinePageDatasModel{ @@ -516,7 +408,7 @@ class MinePageDatasModel{
516 Logger.info(TAG, `getAppointmentList start`); 408 Logger.info(TAG, `getAppointmentList start`);
517 this.fetchOtherCommentListData(params).then((navResDTO: ResponseDTO<MineCommentListDetailItem>) => { 409 this.fetchOtherCommentListData(params).then((navResDTO: ResponseDTO<MineCommentListDetailItem>) => {
518 if (!navResDTO || navResDTO.code != 0) { 410 if (!navResDTO || navResDTO.code != 0) {
519 - success(this.getOtherCommentListDataLocal(context)) 411 + error(null)
520 return 412 return
521 } 413 }
522 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 414 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
@@ -524,7 +416,7 @@ class MinePageDatasModel{ @@ -524,7 +416,7 @@ class MinePageDatasModel{
524 success(navigationBean); 416 success(navigationBean);
525 }).catch((err: Error) => { 417 }).catch((err: Error) => {
526 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 418 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
527 - success(this.getOtherCommentListDataLocal(context)) 419 + error(null)
528 }) 420 })
529 }) 421 })
530 } 422 }
@@ -535,16 +427,6 @@ class MinePageDatasModel{ @@ -535,16 +427,6 @@ class MinePageDatasModel{
535 return WDHttp.get<ResponseDTO<MineCommentListDetailItem>>(url, headers) 427 return WDHttp.get<ResponseDTO<MineCommentListDetailItem>>(url, headers)
536 }; 428 };
537 429
538 - async getOtherCommentListDataLocal(context: Context): Promise<MineCommentListDetailItem> {  
539 - Logger.info(TAG, `getMineFollowListDataLocal start`);  
540 - let compRes: ResponseDTO<MineCommentListDetailItem> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<MineCommentListDetailItem>>(context,'other_user512157124138245_comment_list_data.json' );  
541 - if (!compRes || !compRes.data) {  
542 - Logger.info(TAG, `getMineFollowListDataLocal compRes is empty`);  
543 - return new MineCommentListDetailItem()  
544 - }  
545 - Logger.info(TAG, `getMineFollowListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
546 - return compRes.data  
547 - }  
548 430
549 /** 431 /**
550 * 查询是否点赞了这条评论 432 * 查询是否点赞了这条评论
@@ -557,7 +439,7 @@ class MinePageDatasModel{ @@ -557,7 +439,7 @@ class MinePageDatasModel{
557 Logger.info(TAG, `getAppointmentList start`); 439 Logger.info(TAG, `getAppointmentList start`);
558 this.fetchOtherUserCommentLikeStatusData(params).then((navResDTO: ResponseDTO<QueryCommentListIsLikedItem[]>) => { 440 this.fetchOtherUserCommentLikeStatusData(params).then((navResDTO: ResponseDTO<QueryCommentListIsLikedItem[]>) => {
559 if (!navResDTO || navResDTO.code != 0) { 441 if (!navResDTO || navResDTO.code != 0) {
560 - success(this.getOtherUserCommentLikeStatusDataLocal(context)) 442 + error(null)
561 return 443 return
562 } 444 }
563 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 445 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
@@ -565,7 +447,7 @@ class MinePageDatasModel{ @@ -565,7 +447,7 @@ class MinePageDatasModel{
565 success(navigationBean); 447 success(navigationBean);
566 }).catch((err: Error) => { 448 }).catch((err: Error) => {
567 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 449 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
568 - success(this.getOtherUserCommentLikeStatusDataLocal(context)) 450 + error(null)
569 }) 451 })
570 }) 452 })
571 } 453 }
@@ -576,17 +458,6 @@ class MinePageDatasModel{ @@ -576,17 +458,6 @@ class MinePageDatasModel{
576 return WDHttp.post<ResponseDTO<QueryCommentListIsLikedItem[]>>(url,object, headers) 458 return WDHttp.post<ResponseDTO<QueryCommentListIsLikedItem[]>>(url,object, headers)
577 }; 459 };
578 460
579 - async getOtherUserCommentLikeStatusDataLocal(context: Context): Promise<QueryCommentListIsLikedItem[]> {  
580 - Logger.info(TAG, `getMineFollowListDataLocal start`);  
581 - let compRes: ResponseDTO<QueryCommentListIsLikedItem[]> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<QueryCommentListIsLikedItem[]>>(context,'other_user512157124138245_comment_list_liked_data.json' );  
582 - if (!compRes || !compRes.data) {  
583 - Logger.info(TAG, `getMineFollowListDataLocal compRes is empty`);  
584 - return []  
585 - }  
586 - Logger.info(TAG, `getMineFollowListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
587 - return compRes.data  
588 - }  
589 -  
590 /** 461 /**
591 * 其他用户的关注列表 462 * 其他用户的关注列表
592 * @param params 463 * @param params
@@ -598,7 +469,7 @@ class MinePageDatasModel{ @@ -598,7 +469,7 @@ class MinePageDatasModel{
598 Logger.info(TAG, `getAppointmentList start`); 469 Logger.info(TAG, `getAppointmentList start`);
599 this.fetchOtherUserFollowListData(params).then((navResDTO: ResponseDTO<MineFollowListItem>) => { 470 this.fetchOtherUserFollowListData(params).then((navResDTO: ResponseDTO<MineFollowListItem>) => {
600 if (!navResDTO || navResDTO.code != 0) { 471 if (!navResDTO || navResDTO.code != 0) {
601 - success(this.getOtherUserFollowListDataLocal(context)) 472 + error(null)
602 return 473 return
603 } 474 }
604 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 475 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
@@ -606,7 +477,7 @@ class MinePageDatasModel{ @@ -606,7 +477,7 @@ class MinePageDatasModel{
606 success(navigationBean); 477 success(navigationBean);
607 }).catch((err: Error) => { 478 }).catch((err: Error) => {
608 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 479 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
609 - success(this.getOtherUserFollowListDataLocal(context)) 480 + error(null)
610 }) 481 })
611 }) 482 })
612 } 483 }
@@ -617,17 +488,6 @@ class MinePageDatasModel{ @@ -617,17 +488,6 @@ class MinePageDatasModel{
617 return WDHttp.get<ResponseDTO<MineFollowListItem>>(url, headers) 488 return WDHttp.get<ResponseDTO<MineFollowListItem>>(url, headers)
618 }; 489 };
619 490
620 - async getOtherUserFollowListDataLocal(context: Context): Promise<MineFollowListItem> {  
621 - Logger.info(TAG, `getMineFollowListDataLocal start`);  
622 - let compRes: ResponseDTO<MineFollowListItem> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<MineFollowListItem>>(context,'other_user_follow_list_data.json' );  
623 - if (!compRes || !compRes.data) {  
624 - Logger.info(TAG, `getMineFollowListDataLocal compRes is empty`);  
625 - return new MineFollowListItem()  
626 - }  
627 - Logger.info(TAG, `getMineFollowListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
628 - return compRes.data  
629 - }  
630 -  
631 /** 491 /**
632 * 预约 和取消预约操作 492 * 预约 和取消预约操作
633 * @param params 493 * @param params
@@ -639,14 +499,14 @@ class MinePageDatasModel{ @@ -639,14 +499,14 @@ class MinePageDatasModel{
639 Logger.info(TAG, `getAppointmentList start`); 499 Logger.info(TAG, `getAppointmentList start`);
640 this.fetchAppointmentOperation(params).then((navResDTO: ResponseDTO) => { 500 this.fetchAppointmentOperation(params).then((navResDTO: ResponseDTO) => {
641 if (!navResDTO || navResDTO.code != 0) { 501 if (!navResDTO || navResDTO.code != 0) {
642 - success(this.getAppointmentOperationLocal(context)) 502 + error(null)
643 return 503 return
644 } 504 }
645 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 505 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
646 success(navResDTO); 506 success(navResDTO);
647 }).catch((err: Error) => { 507 }).catch((err: Error) => {
648 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 508 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
649 - success(this.getAppointmentOperationLocal(context)) 509 + error(null)
650 }) 510 })
651 }) 511 })
652 } 512 }
@@ -657,18 +517,6 @@ class MinePageDatasModel{ @@ -657,18 +517,6 @@ class MinePageDatasModel{
657 return WDHttp.post<ResponseDTO>(url,object, headers) 517 return WDHttp.post<ResponseDTO>(url,object, headers)
658 }; 518 };
659 519
660 - async getAppointmentOperationLocal(context: Context): Promise<ResponseDTO> {  
661 - Logger.info(TAG, `getMineFollowListDataLocal start`);  
662 - let compRes: ResponseDTO | null = await ResourcesUtils.getResourcesJson<ResponseDTO>(context,'appointment_operation_data.json');  
663 - if (!compRes ) {  
664 - Logger.info(TAG, `getMineFollowListDataLocal compRes is empty`);  
665 - return compRes  
666 - }  
667 - Logger.info(TAG, `getMineFollowListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
668 - return compRes  
669 - }  
670 -  
671 -  
672 /** 520 /**
673 * 评论点赞操作 521 * 评论点赞操作
674 * @param params 522 * @param params
@@ -680,14 +528,14 @@ class MinePageDatasModel{ @@ -680,14 +528,14 @@ class MinePageDatasModel{
680 Logger.info(TAG, `getAppointmentList start`); 528 Logger.info(TAG, `getAppointmentList start`);
681 this.fetchCommentLikeOperation(params).then((navResDTO: ResponseDTO) => { 529 this.fetchCommentLikeOperation(params).then((navResDTO: ResponseDTO) => {
682 if (!navResDTO || navResDTO.code != 0) { 530 if (!navResDTO || navResDTO.code != 0) {
683 - success(this.getCommentLikeOperationLocal(context)) 531 + error(null)
684 return 532 return
685 } 533 }
686 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 534 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
687 success(navResDTO); 535 success(navResDTO);
688 }).catch((err: Error) => { 536 }).catch((err: Error) => {
689 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 537 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
690 - success(this.getCommentLikeOperationLocal(context)) 538 + error(null)
691 }) 539 })
692 }) 540 })
693 } 541 }
@@ -698,17 +546,6 @@ class MinePageDatasModel{ @@ -698,17 +546,6 @@ class MinePageDatasModel{
698 return WDHttp.post<ResponseDTO>(url,object, headers) 546 return WDHttp.post<ResponseDTO>(url,object, headers)
699 }; 547 };
700 548
701 - async getCommentLikeOperationLocal(context: Context): Promise<ResponseDTO> {  
702 - Logger.info(TAG, `getMineFollowListDataLocal start`);  
703 - let compRes: ResponseDTO | null = await ResourcesUtils.getResourcesJson<ResponseDTO>(context,'comment_like_operation_data.json');  
704 - if (!compRes ) {  
705 - Logger.info(TAG, `getMineFollowListDataLocal compRes is empty`);  
706 - return compRes  
707 - }  
708 - Logger.info(TAG, `getMineFollowListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
709 - return compRes  
710 - }  
711 -  
712 /** 549 /**
713 * 关注 取消关注 操作 550 * 关注 取消关注 操作
714 * @param params 551 * @param params
@@ -720,14 +557,14 @@ class MinePageDatasModel{ @@ -720,14 +557,14 @@ class MinePageDatasModel{
720 Logger.info(TAG, `getAppointmentList start`); 557 Logger.info(TAG, `getAppointmentList start`);
721 this.fetchFollowOperation(params).then((navResDTO: ResponseDTO) => { 558 this.fetchFollowOperation(params).then((navResDTO: ResponseDTO) => {
722 if (!navResDTO || navResDTO.code != 0) { 559 if (!navResDTO || navResDTO.code != 0) {
723 - success(this.getFollowOperationLocal(context)) 560 + error(null)
724 return 561 return
725 } 562 }
726 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp); 563 Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
727 success(navResDTO); 564 success(navResDTO);
728 }).catch((err: Error) => { 565 }).catch((err: Error) => {
729 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`); 566 Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
730 - success(this.getFollowOperationLocal(context)) 567 + error(null)
731 }) 568 })
732 }) 569 })
733 } 570 }
@@ -738,17 +575,6 @@ class MinePageDatasModel{ @@ -738,17 +575,6 @@ class MinePageDatasModel{
738 return WDHttp.post<ResponseDTO>(url,object, headers) 575 return WDHttp.post<ResponseDTO>(url,object, headers)
739 }; 576 };
740 577
741 - async getFollowOperationLocal(context: Context): Promise<ResponseDTO> {  
742 - Logger.info(TAG, `getMineFollowListDataLocal start`);  
743 - let compRes: ResponseDTO | null = await ResourcesUtils.getResourcesJson<ResponseDTO>(context,'follow_operation_data.json');  
744 - if (!compRes ) {  
745 - Logger.info(TAG, `getMineFollowListDataLocal compRes is empty`);  
746 - return compRes  
747 - }  
748 - Logger.info(TAG, `getMineFollowListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
749 - return compRes  
750 - }  
751 -  
752 578
753 } 579 }
754 580
@@ -100,7 +100,7 @@ class SearcherAboutDataModel{ @@ -100,7 +100,7 @@ class SearcherAboutDataModel{
100 Logger.info(TAG, `getSearchHintData start`); 100 Logger.info(TAG, `getSearchHintData start`);
101 this.fetchSearchHintData().then((navResDTO: ResponseDTO<string[]>) => { 101 this.fetchSearchHintData().then((navResDTO: ResponseDTO<string[]>) => {
102 if (!navResDTO || navResDTO.code != 0) { 102 if (!navResDTO || navResDTO.code != 0) {
103 - success(this.getSearchHintDataLocal(context)) 103 + error(null)
104 return 104 return
105 } 105 }
106 Logger.info(TAG, "getSearchHintData then,SearchHintDataResDTO.timeStamp:" + navResDTO.timestamp); 106 Logger.info(TAG, "getSearchHintData then,SearchHintDataResDTO.timeStamp:" + navResDTO.timestamp);
@@ -108,7 +108,7 @@ class SearcherAboutDataModel{ @@ -108,7 +108,7 @@ class SearcherAboutDataModel{
108 success(navigationBean); 108 success(navigationBean);
109 }).catch((err: Error) => { 109 }).catch((err: Error) => {
110 Logger.error(TAG, `fetchSearchHintData catch, error.name : ${err.name}, error.message:${err.message}`); 110 Logger.error(TAG, `fetchSearchHintData catch, error.name : ${err.name}, error.message:${err.message}`);
111 - success(this.getSearchHintDataLocal(context)) 111 + error(null)
112 }) 112 })
113 }) 113 })
114 } 114 }
@@ -119,17 +119,6 @@ class SearcherAboutDataModel{ @@ -119,17 +119,6 @@ class SearcherAboutDataModel{
119 return WDHttp.get<ResponseDTO<string[]>>(url, headers) 119 return WDHttp.get<ResponseDTO<string[]>>(url, headers)
120 }; 120 };
121 121
122 - async getSearchHintDataLocal(context: Context): Promise<string[]> {  
123 - Logger.info(TAG, `getSearchHintDataLocal start`);  
124 - let compRes: ResponseDTO<string[]> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<string[]>>(context,'search_hint_data.json' );  
125 - if (!compRes || !compRes.data) {  
126 - Logger.info(TAG, `getSearchHintDataLocal compRes is empty`);  
127 - return []  
128 - }  
129 - Logger.info(TAG, `getSearchHintDataLocal compRes : ${JSON.stringify(compRes)}`);  
130 - return compRes.data  
131 - }  
132 -  
133 122
134 /** 123 /**
135 * 搜索主页 热词 124 * 搜索主页 热词
@@ -139,7 +128,7 @@ class SearcherAboutDataModel{ @@ -139,7 +128,7 @@ class SearcherAboutDataModel{
139 Logger.info(TAG, `getSearchHintData start`); 128 Logger.info(TAG, `getSearchHintData start`);
140 this.fetchSearchHotsData().then((navResDTO: ResponseDTO<SearchHotContentItem[]>) => { 129 this.fetchSearchHotsData().then((navResDTO: ResponseDTO<SearchHotContentItem[]>) => {
141 if (!navResDTO || navResDTO.code != 0) { 130 if (!navResDTO || navResDTO.code != 0) {
142 - success(this.getSearchHotsDataLocal(context)) 131 + error(null)
143 return 132 return
144 } 133 }
145 Logger.info(TAG, "getSearchHotsData then,getSearchHotsData.timeStamp:" + navResDTO.timestamp); 134 Logger.info(TAG, "getSearchHotsData then,getSearchHotsData.timeStamp:" + navResDTO.timestamp);
@@ -147,7 +136,7 @@ class SearcherAboutDataModel{ @@ -147,7 +136,7 @@ class SearcherAboutDataModel{
147 success(navigationBean); 136 success(navigationBean);
148 }).catch((err: Error) => { 137 }).catch((err: Error) => {
149 Logger.error(TAG, `getSearchHotsData catch, error.name : ${err.name}, error.message:${err.message}`); 138 Logger.error(TAG, `getSearchHotsData catch, error.name : ${err.name}, error.message:${err.message}`);
150 - success(this.getSearchHotsDataLocal(context)) 139 + error(null)
151 }) 140 })
152 }) 141 })
153 } 142 }
@@ -158,18 +147,6 @@ class SearcherAboutDataModel{ @@ -158,18 +147,6 @@ class SearcherAboutDataModel{
158 return WDHttp.get<ResponseDTO<SearchHotContentItem[]>>(url, headers) 147 return WDHttp.get<ResponseDTO<SearchHotContentItem[]>>(url, headers)
159 }; 148 };
160 149
161 - async getSearchHotsDataLocal(context: Context): Promise<SearchHotContentItem[]> {  
162 - Logger.info(TAG, `getSearchHotsDataLocal start`);  
163 - let compRes: ResponseDTO<SearchHotContentItem[]> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<SearchHotContentItem[]>>(context,'search_hots_data.json' ,);  
164 - if (!compRes || !compRes.data) {  
165 - Logger.info(TAG, `getSearchHotsDataLocal compRes is empty`);  
166 - return []  
167 - }  
168 - Logger.info(TAG, `getSearchHotsDataLocal compRes : ${JSON.stringify(compRes)}`);  
169 - return compRes.data  
170 - }  
171 -  
172 -  
173 /** 150 /**
174 * 搜索 联想词 151 * 搜索 联想词
175 */ 152 */
@@ -178,7 +155,7 @@ class SearcherAboutDataModel{ @@ -178,7 +155,7 @@ class SearcherAboutDataModel{
178 Logger.info(TAG, `getSearchHintData start`); 155 Logger.info(TAG, `getSearchHintData start`);
179 this.fetchRelatedSearchContentData(keyword).then((navResDTO: ResponseDTO<string[]>) => { 156 this.fetchRelatedSearchContentData(keyword).then((navResDTO: ResponseDTO<string[]>) => {
180 if (!navResDTO || navResDTO.code != 0) { 157 if (!navResDTO || navResDTO.code != 0) {
181 - success(this.getRelatedSearchContentDataLocal(context)) 158 + error(null)
182 return 159 return
183 } 160 }
184 Logger.info(TAG, "getSearchHintData then,SearchHintDataResDTO.timeStamp:" + navResDTO.timestamp); 161 Logger.info(TAG, "getSearchHintData then,SearchHintDataResDTO.timeStamp:" + navResDTO.timestamp);
@@ -186,7 +163,7 @@ class SearcherAboutDataModel{ @@ -186,7 +163,7 @@ class SearcherAboutDataModel{
186 success(navigationBean); 163 success(navigationBean);
187 }).catch((err: Error) => { 164 }).catch((err: Error) => {
188 Logger.error(TAG, `fetchSearchHintData catch, error.name : ${err.name}, error.message:${err.message}`); 165 Logger.error(TAG, `fetchSearchHintData catch, error.name : ${err.name}, error.message:${err.message}`);
189 - success(this.getRelatedSearchContentDataLocal(context)) 166 + error(null)
190 }) 167 })
191 }) 168 })
192 } 169 }
@@ -197,17 +174,6 @@ class SearcherAboutDataModel{ @@ -197,17 +174,6 @@ class SearcherAboutDataModel{
197 return WDHttp.get<ResponseDTO<string[]>>(url, headers) 174 return WDHttp.get<ResponseDTO<string[]>>(url, headers)
198 }; 175 };
199 176
200 - async getRelatedSearchContentDataLocal(context: Context): Promise<string[]> {  
201 - Logger.info(TAG, `getSearchHintDataLocal start`);  
202 - let compRes: ResponseDTO<string[]> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<string[]>>(context,'search_related_data_nimen.json' );  
203 - if (!compRes || !compRes.data) {  
204 - Logger.info(TAG, `getSearchHintDataLocal compRes is empty`);  
205 - return []  
206 - }  
207 - Logger.info(TAG, `getSearchHintDataLocal compRes : ${JSON.stringify(compRes)}`);  
208 - return compRes.data  
209 - }  
210 -  
211 /** 177 /**
212 * 搜索结果 展示tab数量 178 * 搜索结果 展示tab数量
213 */ 179 */
@@ -216,7 +182,7 @@ class SearcherAboutDataModel{ @@ -216,7 +182,7 @@ class SearcherAboutDataModel{
216 Logger.info(TAG, `getSearchResultCountData start`); 182 Logger.info(TAG, `getSearchResultCountData start`);
217 this.fetchSearchResultCountData(keyword).then((navResDTO: ResponseDTO<SearchResultCountItem>) => { 183 this.fetchSearchResultCountData(keyword).then((navResDTO: ResponseDTO<SearchResultCountItem>) => {
218 if (!navResDTO || navResDTO.code != 0) { 184 if (!navResDTO || navResDTO.code != 0) {
219 - success(this.getSearchResultCountDataLocal(context)) 185 + error(null)
220 return 186 return
221 } 187 }
222 Logger.info(TAG, "getSearchResultCountData then,SearchHintDataResDTO.timeStamp:" + navResDTO.timestamp); 188 Logger.info(TAG, "getSearchResultCountData then,SearchHintDataResDTO.timeStamp:" + navResDTO.timestamp);
@@ -224,7 +190,7 @@ class SearcherAboutDataModel{ @@ -224,7 +190,7 @@ class SearcherAboutDataModel{
224 success(navigationBean); 190 success(navigationBean);
225 }).catch((err: Error) => { 191 }).catch((err: Error) => {
226 Logger.error(TAG, `getSearchResultCountData catch, error.name : ${err.name}, error.message:${err.message}`); 192 Logger.error(TAG, `getSearchResultCountData catch, error.name : ${err.name}, error.message:${err.message}`);
227 - success(this.getSearchResultCountDataLocal(context)) 193 + error(null)
228 }) 194 })
229 }) 195 })
230 } 196 }
@@ -235,17 +201,6 @@ class SearcherAboutDataModel{ @@ -235,17 +201,6 @@ class SearcherAboutDataModel{
235 return WDHttp.get<ResponseDTO<SearchResultCountItem>>(url, headers) 201 return WDHttp.get<ResponseDTO<SearchResultCountItem>>(url, headers)
236 }; 202 };
237 203
238 - async getSearchResultCountDataLocal(context: Context): Promise<SearchResultCountItem> {  
239 - Logger.info(TAG, `getSearchResultCountDataLocal start`);  
240 - let compRes: ResponseDTO<SearchResultCountItem> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<SearchResultCountItem>>(context,'search_result_count_data.json' );  
241 - if (!compRes || !compRes.data) {  
242 - Logger.info(TAG, `getSearchResultCountDataLocal compRes is empty`);  
243 - return new SearchResultCountItem()  
244 - }  
245 - Logger.info(TAG, `getSearchResultCountDataLocal compRes : ${JSON.stringify(compRes)}`);  
246 - return compRes.data  
247 - }  
248 -  
249 /** 204 /**
250 * 搜索结果 展示列表 205 * 搜索结果 展示列表
251 */ 206 */
@@ -254,7 +209,7 @@ class SearcherAboutDataModel{ @@ -254,7 +209,7 @@ class SearcherAboutDataModel{
254 Logger.info(TAG, `getSearchResultListData start`); 209 Logger.info(TAG, `getSearchResultListData start`);
255 this.fetchSearchResultListData(pageSize,pageNum,searchType,keyword).then((navResDTO: ResponseDTO<SearchResultContentData>) => { 210 this.fetchSearchResultListData(pageSize,pageNum,searchType,keyword).then((navResDTO: ResponseDTO<SearchResultContentData>) => {
256 if (!navResDTO || navResDTO.code != 0) { 211 if (!navResDTO || navResDTO.code != 0) {
257 - success(this.getSearchResultListDataLocal(context)) 212 + error(null)
258 return 213 return
259 } 214 }
260 Logger.info(TAG, "getSearchResultListData then,SearchResultListResDTO.timeStamp:" + navResDTO.timestamp); 215 Logger.info(TAG, "getSearchResultListData then,SearchResultListResDTO.timeStamp:" + navResDTO.timestamp);
@@ -262,7 +217,7 @@ class SearcherAboutDataModel{ @@ -262,7 +217,7 @@ class SearcherAboutDataModel{
262 success(navigationBean); 217 success(navigationBean);
263 }).catch((err: Error) => { 218 }).catch((err: Error) => {
264 Logger.error(TAG, `getSearchResultListData catch, error.name : ${err.name}, error.message:${err.message}`); 219 Logger.error(TAG, `getSearchResultListData catch, error.name : ${err.name}, error.message:${err.message}`);
265 - success(this.getSearchResultListDataLocal(context)) 220 + error(null)
266 }) 221 })
267 }) 222 })
268 } 223 }
@@ -273,17 +228,6 @@ class SearcherAboutDataModel{ @@ -273,17 +228,6 @@ class SearcherAboutDataModel{
273 return WDHttp.get<ResponseDTO<SearchResultContentData>>(url, headers) 228 return WDHttp.get<ResponseDTO<SearchResultContentData>>(url, headers)
274 }; 229 };
275 230
276 - async getSearchResultListDataLocal(context: Context): Promise<SearchResultContentData> {  
277 - Logger.info(TAG, `getSearchResultListDataLocal start`);  
278 - let compRes: ResponseDTO<SearchResultContentData> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<SearchResultContentData>>(context,'search_result_list_data.json' );  
279 - if (!compRes || !compRes.data) {  
280 - Logger.info(TAG, `getSearchResultListDataLocal compRes is empty`);  
281 - return new SearchResultContentData()  
282 - }  
283 - Logger.info(TAG, `getSearchResultListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
284 - return compRes.data  
285 - }  
286 -  
287 /** 231 /**
288 * 搜索结果 展示列表(交互详情 评论收藏点赞分享数量) 232 * 搜索结果 展示列表(交互详情 评论收藏点赞分享数量)
289 */ 233 */
@@ -292,7 +236,7 @@ class SearcherAboutDataModel{ @@ -292,7 +236,7 @@ class SearcherAboutDataModel{
292 Logger.info(TAG, `getInteractListData start`); 236 Logger.info(TAG, `getInteractListData start`);
293 this.fetchInteractListData(data).then((navResDTO: ResponseDTO<InteractDataDTO[]>) => { 237 this.fetchInteractListData(data).then((navResDTO: ResponseDTO<InteractDataDTO[]>) => {
294 if (!navResDTO || navResDTO.code != 0) { 238 if (!navResDTO || navResDTO.code != 0) {
295 - success(this.getInteractListDataLocal(context)) 239 + error(null)
296 return 240 return
297 } 241 }
298 Logger.info(TAG, "getInteractListData then,SearchResultListResDTO.timeStamp:" + navResDTO.timestamp); 242 Logger.info(TAG, "getInteractListData then,SearchResultListResDTO.timeStamp:" + navResDTO.timestamp);
@@ -300,7 +244,7 @@ class SearcherAboutDataModel{ @@ -300,7 +244,7 @@ class SearcherAboutDataModel{
300 success(navigationBean); 244 success(navigationBean);
301 }).catch((err: Error) => { 245 }).catch((err: Error) => {
302 Logger.error(TAG, `getInteractListData catch, error.name : ${err.name}, error.message:${err.message}`); 246 Logger.error(TAG, `getInteractListData catch, error.name : ${err.name}, error.message:${err.message}`);
303 - success(this.getInteractListDataLocal(context)) 247 + error(null)
304 }) 248 })
305 }) 249 })
306 } 250 }
@@ -311,18 +255,6 @@ class SearcherAboutDataModel{ @@ -311,18 +255,6 @@ class SearcherAboutDataModel{
311 return WDHttp.post<ResponseDTO<InteractDataDTO[]>>(url,data, headers) 255 return WDHttp.post<ResponseDTO<InteractDataDTO[]>>(url,data, headers)
312 }; 256 };
313 257
314 - async getInteractListDataLocal(context: Context): Promise<InteractDataDTO[]> {  
315 - Logger.info(TAG, `getInteractListDataLocal start`);  
316 - let compRes: ResponseDTO<InteractDataDTO[]> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<InteractDataDTO[]>>(context,'search_result_interact_list_data.json' );  
317 - if (!compRes || !compRes.data) {  
318 - Logger.info(TAG, `getInteractListDataLocal compRes is empty`);  
319 - return []  
320 - }  
321 - Logger.info(TAG, `getInteractListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
322 - return compRes.data  
323 - }  
324 -  
325 -  
326 /** 258 /**
327 * 获取关注详情 列表 259 * 获取关注详情 列表
328 */ 260 */
@@ -331,7 +263,7 @@ class SearcherAboutDataModel{ @@ -331,7 +263,7 @@ class SearcherAboutDataModel{
331 Logger.info(TAG, `getCreatorDetailListData start`); 263 Logger.info(TAG, `getCreatorDetailListData start`);
332 this.fetchCreatorDetailListData(object).then((navResDTO: ResponseDTO<CreatorDetailResponseItem[]>) => { 264 this.fetchCreatorDetailListData(object).then((navResDTO: ResponseDTO<CreatorDetailResponseItem[]>) => {
333 if (!navResDTO || navResDTO.code != 0) { 265 if (!navResDTO || navResDTO.code != 0) {
334 - success([]) 266 + error(null)
335 return 267 return
336 } 268 }
337 Logger.info(TAG, "getCreatorDetailListData then,SearchResultListResDTO.timeStamp:" + navResDTO.timestamp); 269 Logger.info(TAG, "getCreatorDetailListData then,SearchResultListResDTO.timeStamp:" + navResDTO.timestamp);
@@ -339,7 +271,7 @@ class SearcherAboutDataModel{ @@ -339,7 +271,7 @@ class SearcherAboutDataModel{
339 success(navigationBean); 271 success(navigationBean);
340 }).catch((err: Error) => { 272 }).catch((err: Error) => {
341 Logger.error(TAG, `getCreatorDetailListData catch, error.name : ${err.name}, error.message:${err.message}`); 273 Logger.error(TAG, `getCreatorDetailListData catch, error.name : ${err.name}, error.message:${err.message}`);
342 - success([]) 274 + error(null)
343 }) 275 })
344 }) 276 })
345 } 277 }
@@ -357,9 +289,8 @@ class SearcherAboutDataModel{ @@ -357,9 +289,8 @@ class SearcherAboutDataModel{
357 return new Promise<ContentDTO[]>((success, error) => { 289 return new Promise<ContentDTO[]>((success, error) => {
358 Logger.info(TAG, `getSearchSuggestData start`); 290 Logger.info(TAG, `getSearchSuggestData start`);
359 this.fetchSearchSuggestData(object).then((navResDTO: ResponseDTO<ContentDTO[]>) => { 291 this.fetchSearchSuggestData(object).then((navResDTO: ResponseDTO<ContentDTO[]>) => {
360 - if (!navResDTO || navResDTO.code != 0 /*|| navResDTO.data == null*/) {  
361 - // success(this.getSearchSuggestDataLocal(context))  
362 - success([]) 292 + if (!navResDTO || navResDTO.code != 0 ) {
  293 + error(null)
363 return 294 return
364 } 295 }
365 Logger.info(TAG, "getSearchSuggestData then,SearchResultListResDTO.timeStamp:" + navResDTO.timestamp); 296 Logger.info(TAG, "getSearchSuggestData then,SearchResultListResDTO.timeStamp:" + navResDTO.timestamp);
@@ -367,8 +298,7 @@ class SearcherAboutDataModel{ @@ -367,8 +298,7 @@ class SearcherAboutDataModel{
367 success(navigationBean); 298 success(navigationBean);
368 }).catch((err: Error) => { 299 }).catch((err: Error) => {
369 Logger.error(TAG, `getSearchSuggestData catch, error.name : ${err.name}, error.message:${err.message}`); 300 Logger.error(TAG, `getSearchSuggestData catch, error.name : ${err.name}, error.message:${err.message}`);
370 - // success(this.getSearchSuggestDataLocal(context))  
371 - success([]) 301 + error(null)
372 }) 302 })
373 }) 303 })
374 } 304 }
@@ -379,20 +309,6 @@ class SearcherAboutDataModel{ @@ -379,20 +309,6 @@ class SearcherAboutDataModel{
379 return WDHttp.post<ResponseDTO<ContentDTO[]>>(url,object, headers) 309 return WDHttp.post<ResponseDTO<ContentDTO[]>>(url,object, headers)
380 }; 310 };
381 311
382 - async getSearchSuggestDataLocal(context: Context): Promise<ContentDTO[]> {  
383 - Logger.info(TAG, `getInteractListDataLocal start`);  
384 - let compRes: ResponseDTO<ContentDTO[]> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<ContentDTO[]>>(context,'search_suggest_data.json' );  
385 - if (!compRes || !compRes.data) {  
386 - Logger.info(TAG, `getInteractListDataLocal compRes is empty`);  
387 - return []  
388 - }  
389 - Logger.info(TAG, `getInteractListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);  
390 - return compRes.data  
391 - }  
392 -  
393 -  
394 -  
395 -  
396 } 312 }
397 313
398 const searcherAboutDataModel = SearcherAboutDataModel.getInstance() 314 const searcherAboutDataModel = SearcherAboutDataModel.getInstance()
1 -{  
2 - "code": "0",  
3 - "data": {  
4 - "list": [{  
5 - "appStyle": "15",  
6 - "imageUrl": ["https://sitcontentjdcdn.aikan.pdnews.cn/sjbj-20231204/image/live/563cc8ce1ecc43b288f6cf60da66579c.jpeg?x-oss-process=image/resize,l_550,m_fill,h_450,w_800/quality,q_90/format,jpg"],  
7 - "liveId": 20000007348,  
8 - "planStartTime": "2023-12-05 15:26:10",  
9 - "relId": "500000017021",  
10 - "relType": 1,  
11 - "startTime": "",  
12 - "status": "wait",  
13 - "title": "视界运营位加权-加权中删除"  
14 - }, {  
15 - "appStyle": "null",  
16 - "imageUrl": ["https://sitcontentjdcdn.aikan.pdnews.cn/sjbj-20230914/image/display/9af825a00abf490d8a8698f4fc079447.jpg?x-oss-process=image/resize,l_550,m_fill,h_450,w_800/quality,q_90/format,jpg"],  
17 - "liveId": 20000007492,  
18 - "planStartTime": "2024-01-12 20:00:00",  
19 - "relId": "500000020284",  
20 - "relType": 1,  
21 - "startTime": "",  
22 - "status": "wait",  
23 - "title": "QA|汉阴县凤堰古梯田"  
24 - }, {  
25 - "appStyle": "null",  
26 - "imageUrl": ["https://sitcontentjdcdn.aikan.pdnews.cn/sjbj-20230915/image/display/e908748c62a44109bbb7214f3fed458c.jpg?x-oss-process=image/resize,l_550,m_fill,h_450,w_800/quality,q_90/format,jpg"],  
27 - "liveId": 20000007493,  
28 - "planStartTime": "2024-01-12 20:00:00",  
29 - "relId": "500000020286",  
30 - "relType": 1,  
31 - "startTime": "",  
32 - "status": "wait",  
33 - "title": "二十四节气-夏至"  
34 - }, {  
35 - "appStyle": "null",  
36 - "imageUrl": ["https://sitcontentjdcdn.aikan.pdnews.cn/sjbj-20240118/image/display/732d6166103d4d2f9fbf512b128a3486.jpeg?x-oss-process=image/resize,l_550,m_fill,h_450,w_800/quality,q_90/format,jpg"],  
37 - "liveId": 20000007495,  
38 - "planStartTime": "2024-01-18 10:51:33",  
39 - "relId": "500000030122",  
40 - "relType": 1,  
41 - "startTime": "",  
42 - "status": "wait",  
43 - "title": "01181050文字直播没有预告片"  
44 - }, {  
45 - "appStyle": "null",  
46 - "imageUrl": ["https://sitcontentjdcdn.aikan.pdnews.cn/sjbj-20240127/image/live/6359d000bba24812b7ca1765bb106a49.png?x-oss-process=image/resize,l_550,m_fill,h_450,w_800/quality,q_90/format,jpg"],  
47 - "liveId": 20000007519,  
48 - "planStartTime": "2024-02-27 18:18:16",  
49 - "relId": "500000034054",  
50 - "relType": 1,  
51 - "startTime": "",  
52 - "status": "wait",  
53 - "title": "错搞民宿33"  
54 - }, {  
55 - "appStyle": "15",  
56 - "imageUrl": ["https://sitcontentjdcdn.aikan.pdnews.cn/sjbj-20240228/image/live/e6998ab547af472dbc19ba2fd68959b9.jpeg?x-oss-process=image/resize,l_550,m_fill,h_450,w_800/quality,q_90/format,jpg"],  
57 - "liveId": 20000007521,  
58 - "planStartTime": "2024-02-28 19:01:50",  
59 - "relId": "500000034162",  
60 - "relType": 1,  
61 - "startTime": "",  
62 - "status": "wait",  
63 - "title": "保存编辑弹幕开关"  
64 - }],  
65 - "pageNum": 1,  
66 - "pageSize": 20,  
67 - "totalCount": 6  
68 - },  
69 - "message": "Success",  
70 - "requestId": "65289f1217934cffb7587ff4d6ce4689",  
71 - "success": true,  
72 - "timestamp": 1710555152344  
73 -}  
1 -{  
2 - "code": "0",  
3 - "message": "Success",  
4 - "requestId": "9a63f8f9e61d442880a7537763fd1769",  
5 - "success": true,  
6 - "timestamp": 1711589284588  
7 -}  
1 -{  
2 - "code": "0",  
3 - "data": null,  
4 - "message": "Success",  
5 - "meta": null,  
6 - "requestId": "",  
7 - "success": true,  
8 - "timestamp": 1711609914928  
9 -}  
1 -{  
2 - "code": "0",  
3 - "data": [  
4 - {  
5 - "children": [],  
6 - "directoryName": "阅读",  
7 - "directoryWeight": 99,  
8 - "id": 165,  
9 - "isShow": 1,  
10 - "level": 1,  
11 - "parentId": 0,  
12 - "rootId": 0  
13 - },  
14 - {  
15 - "children": [  
16 - {  
17 - "children": [  
18 - {  
19 - "directoryName": "三二",  
20 - "directoryWeight": 2,  
21 - "id": 120,  
22 - "isShow": 1,  
23 - "level": 3,  
24 - "parentId": 118,  
25 - "rootId": 117  
26 - },  
27 - {  
28 - "directoryName": "三级",  
29 - "directoryWeight": 1,  
30 - "id": 119,  
31 - "isShow": 1,  
32 - "level": 3,  
33 - "parentId": 118,  
34 - "rootId": 117  
35 - }  
36 - ],  
37 - "directoryName": "二级",  
38 - "directoryWeight": 1,  
39 - "id": 118,  
40 - "isShow": 1,  
41 - "level": 2,  
42 - "parentId": 117,  
43 - "rootId": 117  
44 - }  
45 - ],  
46 - "directoryName": "幽游白书",  
47 - "directoryWeight": 33,  
48 - "id": 117,  
49 - "isShow": 1,  
50 - "level": 1,  
51 - "parentId": 0,  
52 - "rootId": 0  
53 - },  
54 - {  
55 - "children": [],  
56 - "directoryName": "推荐",  
57 - "directoryWeight": 9,  
58 - "id": 386,  
59 - "isShow": 1,  
60 - "level": 1,  
61 - "parentId": 0,  
62 - "rootId": 0  
63 - },  
64 - {  
65 - "children": [],  
66 - "directoryName": "政务",  
67 - "directoryWeight": 9,  
68 - "id": 379,  
69 - "isShow": 1,  
70 - "level": 1,  
71 - "parentId": 0,  
72 - "rootId": 0  
73 - },  
74 - {  
75 - "children": [  
76 - {  
77 - "children": [],  
78 - "directoryName": "推荐",  
79 - "directoryWeight": 0,  
80 - "id": 335,  
81 - "isShow": 1,  
82 - "level": 2,  
83 - "parentId": 320,  
84 - "rootId": 320  
85 - }  
86 - ],  
87 - "directoryName": "推荐",  
88 - "directoryWeight": 9,  
89 - "id": 320,  
90 - "isShow": 1,  
91 - "level": 1,  
92 - "parentId": 0,  
93 - "rootId": 0  
94 - },  
95 - {  
96 - "children": [],  
97 - "directoryName": "媒体",  
98 - "directoryWeight": 8,  
99 - "id": 390,  
100 - "isShow": 1,  
101 - "level": 1,  
102 - "parentId": 0,  
103 - "rootId": 0  
104 - },  
105 - {  
106 - "children": [],  
107 - "directoryName": "媒体",  
108 - "directoryWeight": 8,  
109 - "id": 323,  
110 - "isShow": 1,  
111 - "level": 1,  
112 - "parentId": 0,  
113 - "rootId": 0  
114 - },  
115 - {  
116 - "children": [],  
117 - "directoryName": "自媒体",  
118 - "directoryWeight": 7,  
119 - "id": 329,  
120 - "isShow": 1,  
121 - "level": 1,  
122 - "parentId": 0,  
123 - "rootId": 0  
124 - },  
125 - {  
126 - "children": [],  
127 - "directoryName": "名人",  
128 - "directoryWeight": 6,  
129 - "id": 389,  
130 - "isShow": 1,  
131 - "level": 1,  
132 - "parentId": 0,  
133 - "rootId": 0  
134 - },  
135 - {  
136 - "children": [  
137 - {  
138 - "children": [],  
139 - "directoryName": "测试",  
140 - "directoryWeight": 0,  
141 - "id": 338,  
142 - "isShow": 1,  
143 - "level": 2,  
144 - "parentId": 324,  
145 - "rootId": 324  
146 - }  
147 - ],  
148 - "directoryName": "名人",  
149 - "directoryWeight": 6,  
150 - "id": 324,  
151 - "isShow": 1,  
152 - "level": 1,  
153 - "parentId": 0,  
154 - "rootId": 0  
155 - },  
156 - {  
157 - "children": [  
158 - {  
159 - "children": [],  
160 - "directoryName": "2级目录",  
161 - "directoryWeight": 0,  
162 - "id": 340,  
163 - "isShow": 1,  
164 - "level": 2,  
165 - "parentId": 312,  
166 - "rootId": 312  
167 - },  
168 - {  
169 - "children": [  
170 - {  
171 - "directoryName": "3级测试",  
172 - "directoryWeight": 0,  
173 - "id": 368,  
174 - "isShow": 1,  
175 - "level": 3,  
176 - "parentId": 339,  
177 - "rootId": 312  
178 - }  
179 - ],  
180 - "directoryName": "二级目录",  
181 - "directoryWeight": 0,  
182 - "id": 339,  
183 - "isShow": 1,  
184 - "level": 2,  
185 - "parentId": 312,  
186 - "rootId": 312  
187 - },  
188 - {  
189 - "children": [  
190 - {  
191 - "directoryName": "企业",  
192 - "directoryWeight": 1,  
193 - "id": 348,  
194 - "isShow": 1,  
195 - "level": 3,  
196 - "parentId": 336,  
197 - "rootId": 312  
198 - },  
199 - {  
200 - "directoryName": "部委",  
201 - "directoryWeight": 0,  
202 - "id": 344,  
203 - "isShow": 1,  
204 - "level": 3,  
205 - "parentId": 336,  
206 - "rootId": 312  
207 - },  
208 - {  
209 - "directoryName": "地方",  
210 - "directoryWeight": 0,  
211 - "id": 341,  
212 - "isShow": 1,  
213 - "level": 3,  
214 - "parentId": 336,  
215 - "rootId": 312  
216 - }  
217 - ],  
218 - "directoryName": "类型",  
219 - "directoryWeight": 0,  
220 - "id": 336,  
221 - "isShow": 1,  
222 - "level": 2,  
223 - "parentId": 312,  
224 - "rootId": 312  
225 - },  
226 - {  
227 - "children": [  
228 - {  
229 - "directoryName": "贵州省",  
230 - "directoryWeight": 0,  
231 - "id": 378,  
232 - "isShow": 1,  
233 - "level": 3,  
234 - "parentId": 332,  
235 - "rootId": 312  
236 - },  
237 - {  
238 - "directoryName": "西藏自治区",  
239 - "directoryWeight": 0,  
240 - "id": 377,  
241 - "isShow": 1,  
242 - "level": 3,  
243 - "parentId": 332,  
244 - "rootId": 312  
245 - },  
246 - {  
247 - "directoryName": "四川省",  
248 - "directoryWeight": 0,  
249 - "id": 376,  
250 - "isShow": 1,  
251 - "level": 3,  
252 - "parentId": 332,  
253 - "rootId": 312  
254 - },  
255 - {  
256 - "directoryName": "重庆市",  
257 - "directoryWeight": 0,  
258 - "id": 375,  
259 - "isShow": 1,  
260 - "level": 3,  
261 - "parentId": 332,  
262 - "rootId": 312  
263 - },  
264 - {  
265 - "directoryName": "湖南省",  
266 - "directoryWeight": 0,  
267 - "id": 374,  
268 - "isShow": 1,  
269 - "level": 3,  
270 - "parentId": 332,  
271 - "rootId": 312  
272 - },  
273 - {  
274 - "directoryName": "云南省",  
275 - "directoryWeight": 0,  
276 - "id": 373,  
277 - "isShow": 1,  
278 - "level": 3,  
279 - "parentId": 332,  
280 - "rootId": 312  
281 - },  
282 - {  
283 - "directoryName": "广西壮族自治区",  
284 - "directoryWeight": 0,  
285 - "id": 372,  
286 - "isShow": 1,  
287 - "level": 3,  
288 - "parentId": 332,  
289 - "rootId": 312  
290 - },  
291 - {  
292 - "directoryName": "宁夏回族自治区",  
293 - "directoryWeight": 0,  
294 - "id": 371,  
295 - "isShow": 1,  
296 - "level": 3,  
297 - "parentId": 332,  
298 - "rootId": 312  
299 - },  
300 - {  
301 - "directoryName": "湖北省",  
302 - "directoryWeight": 0,  
303 - "id": 370,  
304 - "isShow": 1,  
305 - "level": 3,  
306 - "parentId": 332,  
307 - "rootId": 312  
308 - },  
309 - {  
310 - "directoryName": "青海省",  
311 - "directoryWeight": 0,  
312 - "id": 369,  
313 - "isShow": 1,  
314 - "level": 3,  
315 - "parentId": 332,  
316 - "rootId": 312  
317 - },  
318 - {  
319 - "directoryName": "陕西省",  
320 - "directoryWeight": 0,  
321 - "id": 367,  
322 - "isShow": 1,  
323 - "level": 3,  
324 - "parentId": 332,  
325 - "rootId": 312  
326 - },  
327 - {  
328 - "directoryName": "甘肃省",  
329 - "directoryWeight": 0,  
330 - "id": 366,  
331 - "isShow": 1,  
332 - "level": 3,  
333 - "parentId": 332,  
334 - "rootId": 312  
335 - },  
336 - {  
337 - "directoryName": "吉林省",  
338 - "directoryWeight": 0,  
339 - "id": 365,  
340 - "isShow": 1,  
341 - "level": 3,  
342 - "parentId": 332,  
343 - "rootId": 312  
344 - },  
345 - {  
346 - "directoryName": "广东省",  
347 - "directoryWeight": 0,  
348 - "id": 364,  
349 - "isShow": 1,  
350 - "level": 3,  
351 - "parentId": 332,  
352 - "rootId": 312  
353 - },  
354 - {  
355 - "directoryName": "海南省",  
356 - "directoryWeight": 0,  
357 - "id": 363,  
358 - "isShow": 1,  
359 - "level": 3,  
360 - "parentId": 332,  
361 - "rootId": 312  
362 - },  
363 - {  
364 - "directoryName": "辽宁省",  
365 - "directoryWeight": 0,  
366 - "id": 362,  
367 - "isShow": 1,  
368 - "level": 3,  
369 - "parentId": 332,  
370 - "rootId": 312  
371 - },  
372 - {  
373 - "directoryName": "江苏省",  
374 - "directoryWeight": 0,  
375 - "id": 361,  
376 - "isShow": 1,  
377 - "level": 3,  
378 - "parentId": 332,  
379 - "rootId": 312  
380 - },  
381 - {  
382 - "directoryName": "新疆维吾尔族自治区",  
383 - "directoryWeight": 0,  
384 - "id": 360,  
385 - "isShow": 1,  
386 - "level": 3,  
387 - "parentId": 332,  
388 - "rootId": 312  
389 - },  
390 - {  
391 - "directoryName": "福建省",  
392 - "directoryWeight": 0,  
393 - "id": 359,  
394 - "isShow": 1,  
395 - "level": 3,  
396 - "parentId": 332,  
397 - "rootId": 312  
398 - },  
399 - {  
400 - "directoryName": "山东省",  
401 - "directoryWeight": 0,  
402 - "id": 358,  
403 - "isShow": 1,  
404 - "level": 3,  
405 - "parentId": 332,  
406 - "rootId": 312  
407 - },  
408 - {  
409 - "directoryName": "河南省",  
410 - "directoryWeight": 0,  
411 - "id": 357,  
412 - "isShow": 1,  
413 - "level": 3,  
414 - "parentId": 332,  
415 - "rootId": 312  
416 - },  
417 - {  
418 - "directoryName": "浙江省",  
419 - "directoryWeight": 0,  
420 - "id": 356,  
421 - "isShow": 1,  
422 - "level": 3,  
423 - "parentId": 332,  
424 - "rootId": 312  
425 - },  
426 - {  
427 - "directoryName": "安徽省",  
428 - "directoryWeight": 0,  
429 - "id": 355,  
430 - "isShow": 1,  
431 - "level": 3,  
432 - "parentId": 332,  
433 - "rootId": 312  
434 - },  
435 - {  
436 - "directoryName": "上海市",  
437 - "directoryWeight": 0,  
438 - "id": 354,  
439 - "isShow": 1,  
440 - "level": 3,  
441 - "parentId": 332,  
442 - "rootId": 312  
443 - },  
444 - {  
445 - "directoryName": "河北省",  
446 - "directoryWeight": 0,  
447 - "id": 353,  
448 - "isShow": 1,  
449 - "level": 3,  
450 - "parentId": 332,  
451 - "rootId": 312  
452 - },  
453 - {  
454 - "directoryName": "黑龙江省",  
455 - "directoryWeight": 0,  
456 - "id": 352,  
457 - "isShow": 1,  
458 - "level": 3,  
459 - "parentId": 332,  
460 - "rootId": 312  
461 - },  
462 - {  
463 - "directoryName": "江西省",  
464 - "directoryWeight": 0,  
465 - "id": 351,  
466 - "isShow": 1,  
467 - "level": 3,  
468 - "parentId": 332,  
469 - "rootId": 312  
470 - },  
471 - {  
472 - "directoryName": "内蒙古自治区",  
473 - "directoryWeight": 0,  
474 - "id": 350,  
475 - "isShow": 1,  
476 - "level": 3,  
477 - "parentId": 332,  
478 - "rootId": 312  
479 - },  
480 - {  
481 - "directoryName": "北京市",  
482 - "directoryWeight": 0,  
483 - "id": 349,  
484 - "isShow": 1,  
485 - "level": 3,  
486 - "parentId": 332,  
487 - "rootId": 312  
488 - },  
489 - {  
490 - "directoryName": "山西省",  
491 - "directoryWeight": 0,  
492 - "id": 346,  
493 - "isShow": 1,  
494 - "level": 3,  
495 - "parentId": 332,  
496 - "rootId": 312  
497 - }  
498 - ],  
499 - "directoryName": "地域",  
500 - "directoryWeight": 0,  
501 - "id": 332,  
502 - "isShow": 1,  
503 - "level": 2,  
504 - "parentId": 312,  
505 - "rootId": 312  
506 - }  
507 - ],  
508 - "directoryName": "政务",  
509 - "directoryWeight": 5,  
510 - "id": 312,  
511 - "isShow": 1,  
512 - "level": 1,  
513 - "parentId": 0,  
514 - "rootId": 0  
515 - },  
516 - {  
517 - "children": [],  
518 - "directoryName": "学校",  
519 - "directoryWeight": 4,  
520 - "id": 331,  
521 - "isShow": 1,  
522 - "level": 1,  
523 - "parentId": 0,  
524 - "rootId": 0  
525 - },  
526 - {  
527 - "children": [],  
528 - "directoryName": "机构",  
529 - "directoryWeight": 3,  
530 - "id": 330,  
531 - "isShow": 1,  
532 - "level": 1,  
533 - "parentId": 0,  
534 - "rootId": 0  
535 - },  
536 - {  
537 - "children": [  
538 - {  
539 - "children": [  
540 - {  
541 - "directoryName": "新闻联播",  
542 - "directoryWeight": 3,  
543 - "id": 79,  
544 - "isShow": 1,  
545 - "level": 3,  
546 - "parentId": 75,  
547 - "rootId": 74  
548 - },  
549 - {  
550 - "directoryName": "第三季",  
551 - "directoryWeight": 2,  
552 - "id": 78,  
553 - "isShow": 1,  
554 - "level": 3,  
555 - "parentId": 75,  
556 - "rootId": 74  
557 - },  
558 - {  
559 - "directoryName": "三级",  
560 - "directoryWeight": 1,  
561 - "id": 76,  
562 - "isShow": 1,  
563 - "level": 3,  
564 - "parentId": 75,  
565 - "rootId": 74  
566 - }  
567 - ],  
568 - "directoryName": "短视频",  
569 - "directoryWeight": 1,  
570 - "id": 75,  
571 - "isShow": 1,  
572 - "level": 2,  
573 - "parentId": 74,  
574 - "rootId": 74  
575 - }  
576 - ],  
577 - "directoryName": "创作",  
578 - "directoryWeight": 3,  
579 - "id": 74,  
580 - "isShow": 1,  
581 - "level": 1,  
582 - "parentId": 0,  
583 - "rootId": 0  
584 - },  
585 - {  
586 - "children": [  
587 - {  
588 - "children": [],  
589 - "directoryName": "教学",  
590 - "directoryWeight": 2,  
591 - "id": 72,  
592 - "isShow": 1,  
593 - "level": 2,  
594 - "parentId": 64,  
595 - "rootId": 64  
596 - },  
597 - {  
598 - "children": [],  
599 - "directoryName": "热门",  
600 - "directoryWeight": 1,  
601 - "id": 73,  
602 - "isShow": 1,  
603 - "level": 2,  
604 - "parentId": 64,  
605 - "rootId": 64  
606 - },  
607 - {  
608 - "children": [],  
609 - "directoryName": "赛事",  
610 - "directoryWeight": 1,  
611 - "id": 71,  
612 - "isShow": 1,  
613 - "level": 2,  
614 - "parentId": 64,  
615 - "rootId": 64  
616 - }  
617 - ],  
618 - "directoryName": "游戏",  
619 - "directoryWeight": 2,  
620 - "id": 64,  
621 - "isShow": 1,  
622 - "level": 1,  
623 - "parentId": 0,  
624 - "rootId": 0  
625 - },  
626 - {  
627 - "children": [],  
628 - "directoryName": "新闻",  
629 - "directoryWeight": 1,  
630 - "id": 315,  
631 - "isShow": 1,  
632 - "level": 1,  
633 - "parentId": 0,  
634 - "rootId": 0  
635 - },  
636 - {  
637 - "children": [  
638 - {  
639 - "children": [],  
640 - "directoryName": "趣闻",  
641 - "directoryWeight": 6,  
642 - "id": 70,  
643 - "isShow": 1,  
644 - "level": 2,  
645 - "parentId": 63,  
646 - "rootId": 63  
647 - },  
648 - {  
649 - "children": [],  
650 - "directoryName": "时政",  
651 - "directoryWeight": 5,  
652 - "id": 69,  
653 - "isShow": 1,  
654 - "level": 2,  
655 - "parentId": 63,  
656 - "rootId": 63  
657 - },  
658 - {  
659 - "children": [],  
660 - "directoryName": "农业",  
661 - "directoryWeight": 3,  
662 - "id": 68,  
663 - "isShow": 1,  
664 - "level": 2,  
665 - "parentId": 63,  
666 - "rootId": 63  
667 - },  
668 - {  
669 - "children": [],  
670 - "directoryName": "娱乐",  
671 - "directoryWeight": 3,  
672 - "id": 67,  
673 - "isShow": 1,  
674 - "level": 2,  
675 - "parentId": 63,  
676 - "rootId": 63  
677 - },  
678 - {  
679 - "children": [],  
680 - "directoryName": "科技",  
681 - "directoryWeight": 2,  
682 - "id": 66,  
683 - "isShow": 1,  
684 - "level": 2,  
685 - "parentId": 63,  
686 - "rootId": 63  
687 - },  
688 - {  
689 - "children": [],  
690 - "directoryName": "国际",  
691 - "directoryWeight": 1,  
692 - "id": 65,  
693 - "isShow": 1,  
694 - "level": 2,  
695 - "parentId": 63,  
696 - "rootId": 63  
697 - }  
698 - ],  
699 - "directoryName": "新闻",  
700 - "directoryWeight": 1,  
701 - "id": 63,  
702 - "isShow": 1,  
703 - "level": 1,  
704 - "parentId": 0,  
705 - "rootId": 0  
706 - },  
707 - {  
708 - "children": [],  
709 - "directoryName": "公安",  
710 - "directoryWeight": 0,  
711 - "id": 388,  
712 - "isShow": 1,  
713 - "level": 1,  
714 - "parentId": 0,  
715 - "rootId": 0  
716 - },  
717 - {  
718 - "children": [],  
719 - "directoryName": "dddd",  
720 - "directoryWeight": 0,  
721 - "id": 387,  
722 - "isShow": 1,  
723 - "level": 1,  
724 - "parentId": 0,  
725 - "rootId": 0  
726 - },  
727 - {  
728 - "children": [],  
729 - "directoryName": "健康",  
730 - "directoryWeight": 0,  
731 - "id": 384,  
732 - "isShow": 1,  
733 - "level": 1,  
734 - "parentId": 0,  
735 - "rootId": 0  
736 - },  
737 - {  
738 - "children": [],  
739 - "directoryName": "综合",  
740 - "directoryWeight": 0,  
741 - "id": 328,  
742 - "isShow": 1,  
743 - "level": 1,  
744 - "parentId": 0,  
745 - "rootId": 0  
746 - },  
747 - {  
748 - "children": [],  
749 - "directoryName": "房产",  
750 - "directoryWeight": 0,  
751 - "id": 327,  
752 - "isShow": 1,  
753 - "level": 1,  
754 - "parentId": 0,  
755 - "rootId": 0  
756 - },  
757 - {  
758 - "children": [],  
759 - "directoryName": "健康",  
760 - "directoryWeight": 0,  
761 - "id": 318,  
762 - "isShow": 1,  
763 - "level": 1,  
764 - "parentId": 0,  
765 - "rootId": 0  
766 - },  
767 - {  
768 - "children": [],  
769 - "directoryName": "历史",  
770 - "directoryWeight": 0,  
771 - "id": 310,  
772 - "isShow": 1,  
773 - "level": 1,  
774 - "parentId": 0,  
775 - "rootId": 0  
776 - },  
777 - {  
778 - "children": [],  
779 - "directoryName": "dddd",  
780 - "directoryWeight": 0,  
781 - "id": 309,  
782 - "isShow": 1,  
783 - "level": 1,  
784 - "parentId": 0,  
785 - "rootId": 0  
786 - },  
787 - {  
788 - "children": [  
789 - {  
790 - "children": [],  
791 - "directoryName": "aaaa",  
792 - "directoryWeight": 1,  
793 - "id": 333,  
794 - "isShow": 1,  
795 - "level": 2,  
796 - "parentId": 308,  
797 - "rootId": 308  
798 - },  
799 - {  
800 - "children": [],  
801 - "directoryName": "qqq",  
802 - "directoryWeight": 0,  
803 - "id": 334,  
804 - "isShow": 1,  
805 - "level": 2,  
806 - "parentId": 308,  
807 - "rootId": 308  
808 - }  
809 - ],  
810 - "directoryName": "dddd",  
811 - "directoryWeight": 0,  
812 - "id": 308,  
813 - "isShow": 1,  
814 - "level": 1,  
815 - "parentId": 0,  
816 - "rootId": 0  
817 - }  
818 - ],  
819 - "message": "Success",  
820 - "success": true,  
821 - "timestamp": 1710741803593  
822 -}  
1 -{  
2 - "code": "0",  
3 - "data": {  
4 - "list": [  
5 - {  
6 - "attentionNum": 0,  
7 - "authIcon": "",  
8 - "authId": 0,  
9 - "authPersonal": "",  
10 - "authTitle": "",  
11 - "categoryAuth": "",  
12 - "city": "110100",  
13 - "cnAttentionNum": 0,  
14 - "cnCollectNum": 0,  
15 - "cnCommentNum": 0,  
16 - "cnFansNum": 4,  
17 - "cnIsAttention": 1,  
18 - "cnIsComment": 1,  
19 - "cnIsLike": 1,  
20 - "cnLikeNum": 0,  
21 - "cnLiveCommentControl": 1,  
22 - "cnLiveGiftControl": 1,  
23 - "cnLiveLikeControl": 1,  
24 - "cnLiveShareControl": 1,  
25 - "cnMainControl": 1,  
26 - "cnRegistTime": 1695280071000,  
27 - "cnShareControl": 1,  
28 - "cnShareNum": 0,  
29 - "cnUserId": "444937588589253",  
30 - "cnUserName": "QACrawler2115",  
31 - "cnUserType": "2",  
32 - "collectNum": 0,  
33 - "creatorId": "3004862",  
34 - "district": "110101",  
35 - "fansNum": 0,  
36 - "headPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/vod/content/202309/202309Th211436299/GLN.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
37 - "honoraryIcon": "",  
38 - "honoraryTitle": "",  
39 - "introduction": "知识博主",  
40 - "isAttention": 1,  
41 - "isComment": 1,  
42 - "isLike": 1,  
43 - "isVisiable": 1,  
44 - "likeNum": 0,  
45 - "liveCommentControl": 1,  
46 - "liveGiftControl": 1,  
47 - "liveLikeControl": 1,  
48 - "liveShareControl": 1,  
49 - "posterShareControl": 1,  
50 - "province": "110000",  
51 - "publishNum": 0,  
52 - "region": "",  
53 - "shareControl": 1,  
54 - "shareNum": 0,  
55 - "shopOpen": 0,  
56 - "storeUrl": "",  
57 - "subjectType": 0,  
58 - "userId": "",  
59 - "userName": "QACrawler2115",  
60 - "userType": "2",  
61 - "waresSwitch": 1  
62 - },  
63 - {  
64 - "attentionNum": 0,  
65 - "authIcon": "",  
66 - "authId": 0,  
67 - "authPersonal": "",  
68 - "authTitle": "",  
69 - "categoryAuth": "",  
70 - "city": "230100",  
71 - "cnAttentionNum": 0,  
72 - "cnCollectNum": 0,  
73 - "cnCommentNum": 0,  
74 - "cnFansNum": 4,  
75 - "cnIsAttention": 1,  
76 - "cnIsComment": 1,  
77 - "cnIsLike": 1,  
78 - "cnLikeNum": 0,  
79 - "cnLiveCommentControl": 1,  
80 - "cnLiveGiftControl": 1,  
81 - "cnLiveLikeControl": 1,  
82 - "cnLiveShareControl": 1,  
83 - "cnMainControl": 1,  
84 - "cnRegistTime": 1695276994000,  
85 - "cnShareControl": 1,  
86 - "cnShareNum": 0,  
87 - "cnUserId": "444911718724933",  
88 - "cnUserName": "一休哥",  
89 - "cnUserType": "2",  
90 - "collectNum": 0,  
91 - "creatorId": "3004861",  
92 - "district": "230102",  
93 - "fansNum": 0,  
94 - "headPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/vod/content/202309/202309Th141630857/Ptx.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
95 - "honoraryIcon": "",  
96 - "honoraryTitle": "",  
97 - "introduction": "中文端号主",  
98 - "isAttention": 1,  
99 - "isComment": 1,  
100 - "isLike": 1,  
101 - "isVisiable": 1,  
102 - "likeNum": 0,  
103 - "liveCommentControl": 1,  
104 - "liveGiftControl": 1,  
105 - "liveLikeControl": 1,  
106 - "liveShareControl": 1,  
107 - "posterShareControl": 1,  
108 - "province": "230000",  
109 - "publishNum": 0,  
110 - "region": "安徽",  
111 - "shareControl": 1,  
112 - "shareNum": 0,  
113 - "shopOpen": 0,  
114 - "storeUrl": "",  
115 - "subjectType": 2,  
116 - "userId": "",  
117 - "userName": "一休哥",  
118 - "userType": "2",  
119 - "waresSwitch": 1  
120 - },  
121 - {  
122 - "attentionNum": 0,  
123 - "authIcon": "",  
124 - "authId": 0,  
125 - "authPersonal": "",  
126 - "authTitle": "",  
127 - "categoryAuth": "",  
128 - "city": "110100",  
129 - "cnAttentionNum": 0,  
130 - "cnCollectNum": 0,  
131 - "cnCommentNum": 12,  
132 - "cnFansNum": 8,  
133 - "cnIsAttention": 1,  
134 - "cnIsComment": 1,  
135 - "cnIsLike": 1,  
136 - "cnLikeNum": 2,  
137 - "cnLiveCommentControl": 1,  
138 - "cnLiveGiftControl": 1,  
139 - "cnLiveLikeControl": 1,  
140 - "cnLiveShareControl": 1,  
141 - "cnMainControl": 1,  
142 - "cnRegistTime": 1695275999000,  
143 - "cnShareControl": 1,  
144 - "cnShareNum": 1,  
145 - "cnUserId": "444903323309381",  
146 - "cnUserName": "0921媒体",  
147 - "cnUserType": "3",  
148 - "collectNum": 0,  
149 - "creatorId": "3004860",  
150 - "district": "110101",  
151 - "fansNum": 0,  
152 - "headPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/vod/content/202309/202309Th135954709/qdL.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
153 - "honoraryIcon": "",  
154 - "honoraryTitle": "",  
155 - "introduction": "0921媒体",  
156 - "isAttention": 1,  
157 - "isComment": 1,  
158 - "isLike": 1,  
159 - "isVisiable": 1,  
160 - "likeNum": 0,  
161 - "liveCommentControl": 1,  
162 - "liveGiftControl": 1,  
163 - "liveLikeControl": 1,  
164 - "liveShareControl": 1,  
165 - "posterShareControl": 0,  
166 - "province": "110000",  
167 - "publishNum": 0,  
168 - "region": "上海",  
169 - "shareControl": 1,  
170 - "shareNum": 0,  
171 - "shopOpen": 0,  
172 - "storeUrl": "",  
173 - "subjectType": 1,  
174 - "userId": "",  
175 - "userName": "0921媒体",  
176 - "userType": "3",  
177 - "waresSwitch": 1  
178 - },  
179 - {  
180 - "attentionNum": 0,  
181 - "authIcon": "",  
182 - "authId": 0,  
183 - "authPersonal": "",  
184 - "authTitle": "",  
185 - "categoryAuth": "",  
186 - "city": "110100",  
187 - "cnAttentionNum": 0,  
188 - "cnCollectNum": 0,  
189 - "cnCommentNum": 0,  
190 - "cnFansNum": 9,  
191 - "cnIsAttention": 1,  
192 - "cnIsComment": 1,  
193 - "cnIsLike": 1,  
194 - "cnLikeNum": 6,  
195 - "cnLiveCommentControl": 1,  
196 - "cnLiveGiftControl": 1,  
197 - "cnLiveLikeControl": 1,  
198 - "cnLiveShareControl": 1,  
199 - "cnMainControl": 1,  
200 - "cnRegistTime": 1695201858000,  
201 - "cnShareControl": 1,  
202 - "cnShareNum": 0,  
203 - "cnUserId": "444296355502149",  
204 - "cnUserName": "0920个人",  
205 - "cnUserType": "2",  
206 - "collectNum": 0,  
207 - "creatorId": "3004851",  
208 - "district": "110101",  
209 - "fansNum": 0,  
210 - "headPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/vod/content/202309/202309We172415100/h2j.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
211 - "honoraryIcon": "https://cdn.aikan.pdnews.cn/image/picture/202312/20231223173451966FdV.png",  
212 - "honoraryTitle": "快乐星球",  
213 - "introduction": "账号简介",  
214 - "isAttention": 1,  
215 - "isComment": 1,  
216 - "isLike": 1,  
217 - "isVisiable": 1,  
218 - "likeNum": 0,  
219 - "liveCommentControl": 1,  
220 - "liveGiftControl": 1,  
221 - "liveLikeControl": 1,  
222 - "liveShareControl": 1,  
223 - "posterShareControl": 1,  
224 - "province": "110000",  
225 - "publishNum": 0,  
226 - "region": "上海",  
227 - "shareControl": 1,  
228 - "shareNum": 0,  
229 - "shopOpen": 0,  
230 - "storeUrl": "",  
231 - "subjectType": 0,  
232 - "userId": "",  
233 - "userName": "0920个人",  
234 - "userType": "2",  
235 - "waresSwitch": 1  
236 - },  
237 - {  
238 - "attentionNum": 0,  
239 - "authIcon": "",  
240 - "authId": 0,  
241 - "authPersonal": "",  
242 - "authTitle": "",  
243 - "categoryAuth": "",  
244 - "city": "120100",  
245 - "cnAttentionNum": 0,  
246 - "cnCollectNum": 0,  
247 - "cnCommentNum": 0,  
248 - "cnFansNum": 10,  
249 - "cnIsAttention": 1,  
250 - "cnIsComment": 1,  
251 - "cnIsLike": 1,  
252 - "cnLikeNum": 0,  
253 - "cnLiveCommentControl": 1,  
254 - "cnLiveGiftControl": 1,  
255 - "cnLiveLikeControl": 1,  
256 - "cnLiveShareControl": 1,  
257 - "cnMainControl": 1,  
258 - "cnRegistTime": 1695190066000,  
259 - "cnShareControl": 1,  
260 - "cnShareNum": 0,  
261 - "cnUserId": "444200272593477",  
262 - "cnUserName": "zhuaqu005",  
263 - "cnUserType": "2",  
264 - "collectNum": 0,  
265 - "creatorId": "3004849",  
266 - "district": "120101",  
267 - "fansNum": 0,  
268 - "headPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/vod/content/202309/202309We140931534/CIX.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
269 - "honoraryIcon": "",  
270 - "honoraryTitle": "",  
271 - "introduction": "aaa",  
272 - "isAttention": 1,  
273 - "isComment": 1,  
274 - "isLike": 1,  
275 - "isVisiable": 1,  
276 - "likeNum": 0,  
277 - "liveCommentControl": 1,  
278 - "liveGiftControl": 1,  
279 - "liveLikeControl": 1,  
280 - "liveShareControl": 1,  
281 - "posterShareControl": 1,  
282 - "province": "120000",  
283 - "publishNum": 0,  
284 - "region": "上海",  
285 - "shareControl": 1,  
286 - "shareNum": 0,  
287 - "shopOpen": 0,  
288 - "storeUrl": "",  
289 - "subjectType": 0,  
290 - "userId": "",  
291 - "userName": "zhuaqu005",  
292 - "userType": "2",  
293 - "waresSwitch": 1  
294 - },  
295 - {  
296 - "attentionNum": 0,  
297 - "authIcon": "https://sitcontentjdcdn.aikan.pdnews.cn/creator-category/icon/auth/yellow.png",  
298 - "authId": 2,  
299 - "authPersonal": "",  
300 - "authTitle": "黄VV",  
301 - "categoryAuth": "黄VV",  
302 - "city": "120100",  
303 - "cnAttentionNum": 1,  
304 - "cnCollectNum": 1,  
305 - "cnCommentNum": 7,  
306 - "cnFansNum": 13,  
307 - "cnIsAttention": 1,  
308 - "cnIsComment": 1,  
309 - "cnIsLike": 1,  
310 - "cnLikeNum": 0,  
311 - "cnLiveCommentControl": 1,  
312 - "cnLiveGiftControl": 1,  
313 - "cnLiveLikeControl": 1,  
314 - "cnLiveShareControl": 1,  
315 - "cnMainControl": 1,  
316 - "cnRegistTime": 1695202406000,  
317 - "cnShareControl": 1,  
318 - "cnShareNum": 0,  
319 - "cnUserId": "444300764043333",  
320 - "cnUserName": "创作者账号7777",  
321 - "cnUserType": "2",  
322 - "collectNum": 0,  
323 - "creatorId": "3004853",  
324 - "district": "120101",  
325 - "fansNum": 0,  
326 - "headPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/image/creator/2023092715/4727ab5db7604dbbac9ffb94ed03614e.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
327 - "honoraryIcon": "",  
328 - "honoraryTitle": "",  
329 - "introduction": "协作平台是进行团队开发、协作的系统,一般是基于互联网,也有用专业网的情况。协作平台的主要功能是:分工合作、进度控制、版本控制等功能。协作平台是进行团队开发、协作的系统,一般是基于互联网,也有用专业网的情况。协作平台的主要功能是:分工合作、进度控制、版本控制等功能。协作平台是进行团队开发、协作的系统,一般是基于互联网,也有用专业网的情况。协作平台的主要功能是:分工合作、进度控制、版本控制等功能。协作",  
330 - "isAttention": 1,  
331 - "isComment": 1,  
332 - "isLike": 1,  
333 - "isVisiable": 1,  
334 - "likeNum": 0,  
335 - "liveCommentControl": 1,  
336 - "liveGiftControl": 1,  
337 - "liveLikeControl": 1,  
338 - "liveShareControl": 1,  
339 - "posterShareControl": 0,  
340 - "province": "120000",  
341 - "publishNum": 0,  
342 - "region": "安徽",  
343 - "shareControl": 1,  
344 - "shareNum": 0,  
345 - "shopOpen": 1,  
346 - "storeUrl": "",  
347 - "subjectType": 0,  
348 - "userId": "",  
349 - "userName": "创作者账号7777",  
350 - "userType": "2",  
351 - "waresSwitch": 0  
352 - },  
353 - {  
354 - "attentionNum": 0,  
355 - "authIcon": "https://sitcontentjdcdn.aikan.pdnews.cn/creator-category/icon/auth/blue.png",  
356 - "authId": 1,  
357 - "authPersonal": "",  
358 - "authTitle": "黄袍加身V",  
359 - "categoryAuth": "黄袍加身V",  
360 - "city": "340100",  
361 - "cnAttentionNum": 9,  
362 - "cnCollectNum": 0,  
363 - "cnCommentNum": 3,  
364 - "cnFansNum": 9,  
365 - "cnIsAttention": 1,  
366 - "cnIsComment": 1,  
367 - "cnIsLike": 1,  
368 - "cnLikeNum": 7,  
369 - "cnLiveCommentControl": 1,  
370 - "cnLiveGiftControl": 1,  
371 - "cnLiveLikeControl": 1,  
372 - "cnLiveShareControl": 1,  
373 - "cnMainControl": 1,  
374 - "cnRegistTime": 1695260417000,  
375 - "cnShareControl": 1,  
376 - "cnShareNum": 0,  
377 - "cnUserId": "444776025830725",  
378 - "cnUserName": "李智恩3",  
379 - "cnUserType": "2",  
380 - "collectNum": 0,  
381 - "creatorId": "3004855",  
382 - "district": "340102",  
383 - "fansNum": 0,  
384 - "headPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/vod/content/202309/202309Th094010643/N5o.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
385 - "honoraryIcon": "",  
386 - "honoraryTitle": "",  
387 - "introduction": "IU",  
388 - "isAttention": 1,  
389 - "isComment": 1,  
390 - "isLike": 1,  
391 - "isVisiable": 1,  
392 - "likeNum": 0,  
393 - "liveCommentControl": 1,  
394 - "liveGiftControl": 1,  
395 - "liveLikeControl": 1,  
396 - "liveShareControl": 1,  
397 - "posterShareControl": 0,  
398 - "province": "340000",  
399 - "publishNum": 0,  
400 - "region": "安徽",  
401 - "shareControl": 1,  
402 - "shareNum": 0,  
403 - "shopOpen": 1,  
404 - "storeUrl": "",  
405 - "subjectType": 1,  
406 - "userId": "",  
407 - "userName": "李智恩3",  
408 - "userType": "2",  
409 - "waresSwitch": 0  
410 - }  
411 - ],  
412 - "pageNum": 1,  
413 - "pageSize": 20,  
414 - "totalCount": 7  
415 - },  
416 - "message": "Success",  
417 - "success": true,  
418 - "timestamp": 1710989443354  
419 -}  
1 -{  
2 - "code": "0",  
3 - "data": [  
4 - {  
5 - "creatorId": "3004862",  
6 - "status": "0",  
7 - "userId": "567387477063621"  
8 - },  
9 - {  
10 - "creatorId": "3004861",  
11 - "status": "0",  
12 - "userId": "567387477063621"  
13 - },  
14 - {  
15 - "creatorId": "3004860",  
16 - "status": "0",  
17 - "userId": "567387477063621"  
18 - },  
19 - {  
20 - "creatorId": "3004851",  
21 - "status": "1",  
22 - "userId": "567387477063621"  
23 - },  
24 - {  
25 - "creatorId": "3004849",  
26 - "status": "1",  
27 - "userId": "567387477063621"  
28 - },  
29 - {  
30 - "creatorId": "3004853",  
31 - "status": "1",  
32 - "userId": "567387477063621"  
33 - },  
34 - {  
35 - "creatorId": "3004855",  
36 - "status": "0",  
37 - "userId": "567387477063621"  
38 - }  
39 - ],  
40 - "message": "Success",  
41 - "meta": null,  
42 - "requestId": "",  
43 - "success": true,  
44 - "timestamp": 1710989443648  
45 -}  
1 -{  
2 - "code": "0",  
3 - "data": null,  
4 - "message": "Success",  
5 - "meta": null,  
6 - "requestId": "",  
7 - "success": true,  
8 - "timestamp": 1711609966231  
9 -}  
1 -{  
2 - "code": "0",  
3 - "data": {  
4 - "hasNext": 0,  
5 - "list": [  
6 - {  
7 - "avatarFrame": "",  
8 - "checkStatus": 0,  
9 - "commentContent": "车得修,歌也得唱不唱心里那口气儿就没了你哥我以前心里也有这股劲儿那时候我想的是什么想的是每天什么时候开始现在心里这股劲儿泄了我想的是每天什么时候结束心里有这股劲儿的时候你哥也摇滚过现在这股劲儿没了我天天想的都是这个是这个但你不能这样只要咱们继续唱大吉他就还在不唱就真的没了——《缝纫机乐队》",  
10 - "commentContentSensitive": "",  
11 - "commentLevel": 1,  
12 - "commentPics": "",  
13 - "commentSensitive": "",  
14 - "commentType": "2",  
15 - "createTime": "2024-03-21 13:37:13",  
16 - "fromCreatorId": "",  
17 - "fromDeviceId": "",  
18 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn//img/user/2024031215/48d5bd53227d436b9faa937b3ac14600.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
19 - "fromUserId": "567387477063621",  
20 - "fromUserName": "人民日报网友aPrtq5",  
21 - "fromUserType": 1,  
22 - "h5Url": "",  
23 - "id": 303323,  
24 - "keyArticle": 0,  
25 - "likeNum": 0,  
26 - "parentCommentVo": null,  
27 - "parentId": -1,  
28 - "rootCommentId": 303323,  
29 - "sensitiveExist": 0,  
30 - "sensitiveShow": 1,  
31 - "shareInfo": {  
32 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231012/image/content/7f1a342a809d4276aa975ba9e7fe2313.png",  
33 - "shareSummary": "这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是",  
34 - "shareTitle": "这是一个开始、请持续关注这是一个开始、请",  
35 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000633703-500000008559"  
36 - },  
37 - "targetId": "30000633703",  
38 - "targetRelId": "500000008559",  
39 - "targetRelObjectId": "2002",  
40 - "targetRelType": 1,  
41 - "targetStatus": 0,  
42 - "targetTitle": "这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注",  
43 - "targetType": 8,  
44 - "topicType": null,  
45 - "uuid": "a1944aa3-e598-44ea-b2c5-45a4fe0ba91f"  
46 - },  
47 - {  
48 - "avatarFrame": "",  
49 - "checkStatus": 0,  
50 - "commentContent": "我们都很好",  
51 - "commentContentSensitive": "",  
52 - "commentLevel": 1,  
53 - "commentPics": "",  
54 - "commentSensitive": "",  
55 - "commentType": "2",  
56 - "createTime": "2024-03-14 17:56:14",  
57 - "fromCreatorId": "",  
58 - "fromDeviceId": "",  
59 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn//img/user/2024031215/48d5bd53227d436b9faa937b3ac14600.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
60 - "fromUserId": "567387477063621",  
61 - "fromUserName": "人民日报网友aPrtq5",  
62 - "fromUserType": 1,  
63 - "h5Url": "",  
64 - "id": 403449,  
65 - "keyArticle": 0,  
66 - "likeNum": 0,  
67 - "parentCommentVo": null,  
68 - "parentId": -1,  
69 - "rootCommentId": 403449,  
70 - "sensitiveExist": 0,  
71 - "sensitiveShow": 1,  
72 - "shareInfo": {  
73 - "shareCoverUrl": "",  
74 - "shareSummary": "人民日报,有品质的新闻",  
75 - "shareTitle": "丝路之美",  
76 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000654108-500000017213"  
77 - },  
78 - "targetId": "30000654108",  
79 - "targetRelId": "500000017213",  
80 - "targetRelObjectId": "2002",  
81 - "targetRelType": 1,  
82 - "targetStatus": 0,  
83 - "targetTitle": "丝路之美",  
84 - "targetType": 8,  
85 - "topicType": null,  
86 - "uuid": "1706ec91-8fb3-4704-bde3-fb454386e419"  
87 - },  
88 - {  
89 - "avatarFrame": "",  
90 - "checkStatus": 0,  
91 - "commentContent": "大家好",  
92 - "commentContentSensitive": "",  
93 - "commentLevel": 1,  
94 - "commentPics": "",  
95 - "commentSensitive": "",  
96 - "commentType": "2",  
97 - "createTime": "2024-03-14 17:56:04",  
98 - "fromCreatorId": "",  
99 - "fromDeviceId": "",  
100 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn//img/user/2024031215/48d5bd53227d436b9faa937b3ac14600.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
101 - "fromUserId": "567387477063621",  
102 - "fromUserName": "人民日报网友aPrtq5",  
103 - "fromUserType": 1,  
104 - "h5Url": "",  
105 - "id": 403448,  
106 - "keyArticle": 0,  
107 - "likeNum": 0,  
108 - "parentCommentVo": null,  
109 - "parentId": -1,  
110 - "rootCommentId": 403448,  
111 - "sensitiveExist": 0,  
112 - "sensitiveShow": 1,  
113 - "shareInfo": {  
114 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231012/image/content/b7170ff0d0954b389e7e9f8c3c1d777a.png",  
115 - "shareSummary": "人民日报,有品质的新闻",  
116 - "shareTitle": "展示发",  
117 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000633589-500000008382"  
118 - },  
119 - "targetId": "30000633589",  
120 - "targetRelId": "500000008382",  
121 - "targetRelObjectId": "2002",  
122 - "targetRelType": 1,  
123 - "targetStatus": 0,  
124 - "targetTitle": "展示发",  
125 - "targetType": 13,  
126 - "topicType": null,  
127 - "uuid": "17c5a8d9-622c-4b7a-bcd2-afc792fb8fb7"  
128 - },  
129 - {  
130 - "avatarFrame": "",  
131 - "checkStatus": 0,  
132 - "commentContent": "你好",  
133 - "commentContentSensitive": "",  
134 - "commentLevel": 1,  
135 - "commentPics": "",  
136 - "commentSensitive": "",  
137 - "commentType": "2",  
138 - "createTime": "2024-03-14 17:55:55",  
139 - "fromCreatorId": "",  
140 - "fromDeviceId": "",  
141 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn//img/user/2024031215/48d5bd53227d436b9faa937b3ac14600.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
142 - "fromUserId": "567387477063621",  
143 - "fromUserName": "人民日报网友aPrtq5",  
144 - "fromUserType": 1,  
145 - "h5Url": "",  
146 - "id": 403447,  
147 - "keyArticle": 0,  
148 - "likeNum": 0,  
149 - "parentCommentVo": null,  
150 - "parentId": -1,  
151 - "rootCommentId": 403447,  
152 - "sensitiveExist": 0,  
153 - "sensitiveShow": 1,  
154 - "shareInfo": {  
155 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231103/image/content/046db0ef912f43dda639009e2b78a774.png",  
156 - "shareSummary": "复测-坐船观鸟,骑行散步,通州125处湿地邀您亲近自然-导读",  
157 - "shareTitle": "复测-坐船观鸟,骑行散步,通州125处湿",  
158 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000637972-500000010900"  
159 - },  
160 - "targetId": "30000637972",  
161 - "targetRelId": "500000010900",  
162 - "targetRelObjectId": "2002",  
163 - "targetRelType": 1,  
164 - "targetStatus": 0,  
165 - "targetTitle": "复测-坐船观鸟,骑行散步,通州125处湿地邀您亲近自然",  
166 - "targetType": 8,  
167 - "topicType": null,  
168 - "uuid": "f809d73f-a66c-4dd6-a4cf-99e3a9c9621e"  
169 - },  
170 - {  
171 - "avatarFrame": "",  
172 - "checkStatus": 0,  
173 - "commentContent": "你好",  
174 - "commentContentSensitive": "",  
175 - "commentLevel": 1,  
176 - "commentPics": "",  
177 - "commentSensitive": "",  
178 - "commentType": "2",  
179 - "createTime": "2024-03-14 17:55:55",  
180 - "fromCreatorId": "",  
181 - "fromDeviceId": "",  
182 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn//img/user/2024031215/48d5bd53227d436b9faa937b3ac14600.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
183 - "fromUserId": "567387477063621",  
184 - "fromUserName": "人民日报网友aPrtq5",  
185 - "fromUserType": 1,  
186 - "h5Url": "",  
187 - "id": 403447,  
188 - "keyArticle": 0,  
189 - "likeNum": 0,  
190 - "parentCommentVo": null,  
191 - "parentId": -1,  
192 - "rootCommentId": 403447,  
193 - "sensitiveExist": 0,  
194 - "sensitiveShow": 1,  
195 - "shareInfo": {  
196 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231103/image/content/046db0ef912f43dda639009e2b78a774.png",  
197 - "shareSummary": "复测-坐船观鸟,骑行散步,通州125处湿地邀您亲近自然-导读",  
198 - "shareTitle": "复测-坐船观鸟,骑行散步,通州125处湿",  
199 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000637972-500000010900"  
200 - },  
201 - "targetId": "30000637972",  
202 - "targetRelId": "500000010900",  
203 - "targetRelObjectId": "2002",  
204 - "targetRelType": 1,  
205 - "targetStatus": 0,  
206 - "targetTitle": "复测-坐船观鸟,骑行散步,通州125处湿地邀您亲近自然",  
207 - "targetType": 8,  
208 - "topicType": null,  
209 - "uuid": "f809d73f-a66c-4dd6-a4cf-99e3a9c9621e"  
210 - },  
211 - {  
212 - "avatarFrame": "",  
213 - "checkStatus": 0,  
214 - "commentContent": "你好",  
215 - "commentContentSensitive": "",  
216 - "commentLevel": 1,  
217 - "commentPics": "",  
218 - "commentSensitive": "",  
219 - "commentType": "2",  
220 - "createTime": "2024-03-14 17:55:55",  
221 - "fromCreatorId": "",  
222 - "fromDeviceId": "",  
223 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn//img/user/2024031215/48d5bd53227d436b9faa937b3ac14600.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
224 - "fromUserId": "567387477063621",  
225 - "fromUserName": "人民日报网友aPrtq5",  
226 - "fromUserType": 1,  
227 - "h5Url": "",  
228 - "id": 403447,  
229 - "keyArticle": 0,  
230 - "likeNum": 0,  
231 - "parentCommentVo": null,  
232 - "parentId": -1,  
233 - "rootCommentId": 403447,  
234 - "sensitiveExist": 0,  
235 - "sensitiveShow": 1,  
236 - "shareInfo": {  
237 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231103/image/content/046db0ef912f43dda639009e2b78a774.png",  
238 - "shareSummary": "复测-坐船观鸟,骑行散步,通州125处湿地邀您亲近自然-导读",  
239 - "shareTitle": "复测-坐船观鸟,骑行散步,通州125处湿",  
240 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000637972-500000010900"  
241 - },  
242 - "targetId": "30000637972",  
243 - "targetRelId": "500000010900",  
244 - "targetRelObjectId": "2002",  
245 - "targetRelType": 1,  
246 - "targetStatus": 0,  
247 - "targetTitle": "复测-坐船观鸟,骑行散步,通州125处湿地邀您亲近自然",  
248 - "targetType": 8,  
249 - "topicType": null,  
250 - "uuid": "f809d73f-a66c-4dd6-a4cf-99e3a9c9621e"  
251 - },  
252 - {  
253 - "avatarFrame": "",  
254 - "checkStatus": 0,  
255 - "commentContent": "你好",  
256 - "commentContentSensitive": "",  
257 - "commentLevel": 1,  
258 - "commentPics": "",  
259 - "commentSensitive": "",  
260 - "commentType": "2",  
261 - "createTime": "2024-03-14 17:55:55",  
262 - "fromCreatorId": "",  
263 - "fromDeviceId": "",  
264 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn//img/user/2024031215/48d5bd53227d436b9faa937b3ac14600.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
265 - "fromUserId": "567387477063621",  
266 - "fromUserName": "人民日报网友aPrtq5",  
267 - "fromUserType": 1,  
268 - "h5Url": "",  
269 - "id": 403447,  
270 - "keyArticle": 0,  
271 - "likeNum": 0,  
272 - "parentCommentVo": null,  
273 - "parentId": -1,  
274 - "rootCommentId": 403447,  
275 - "sensitiveExist": 0,  
276 - "sensitiveShow": 1,  
277 - "shareInfo": {  
278 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231103/image/content/046db0ef912f43dda639009e2b78a774.png",  
279 - "shareSummary": "复测-坐船观鸟,骑行散步,通州125处湿地邀您亲近自然-导读",  
280 - "shareTitle": "复测-坐船观鸟,骑行散步,通州125处湿",  
281 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000637972-500000010900"  
282 - },  
283 - "targetId": "30000637972",  
284 - "targetRelId": "500000010900",  
285 - "targetRelObjectId": "2002",  
286 - "targetRelType": 1,  
287 - "targetStatus": 0,  
288 - "targetTitle": "复测-坐船观鸟,骑行散步,通州125处湿地邀您亲近自然",  
289 - "targetType": 8,  
290 - "topicType": null,  
291 - "uuid": "f809d73f-a66c-4dd6-a4cf-99e3a9c9621e"  
292 - }  
293 - ],  
294 - "pageNum": 1,  
295 - "pageSize": 20,  
296 - "totalCommentNum": 4,  
297 - "totalCount": 4  
298 - },  
299 - "message": "Success",  
300 - "meta": null,  
301 - "requestId": "",  
302 - "success": true,  
303 - "timestamp": 1711092987342  
304 -}  
1 -{  
2 - "code": "0",  
3 - "data": {  
4 - "hasNext": 0,  
5 - "list": [  
6 - {  
7 - "avatarFrame": "",  
8 - "checkStatus": 0,  
9 - "commentContent": "说得很好啊你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突",  
10 - "commentContentSensitive": "",  
11 - "commentLevel": 2,  
12 - "commentPics": "",  
13 - "commentSensitive": "",  
14 - "commentType": "2",  
15 - "createTime": "2024-04-24 10:22:37",  
16 - "fromCreatorId": "",  
17 - "fromDeviceId": "",  
18 - "fromUserHeader": "https://rmrbcmsonline.peopleapp.com/upload/default.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
19 - "fromUserId": "559509019499205",  
20 - "fromUserName": "人民wH38q",  
21 - "fromUserType": 1,  
22 - "h5Url": "",  
23 - "id": 58110548,  
24 - "keyArticle": 0,  
25 - "likeNum": 0,  
26 - "pageId": null,  
27 - "parentCommentVo": {  
28 - "avatarFrame": "",  
29 - "checkStatus": 2,  
30 - "commentContent": "1,因为读书的人\n是低着头向上看的人\n身处一隅,却能放眼世界\n2,因为读书的人\n总是比不读书的人\n活得有趣一点\n3,因为读书的人\n即使平凡,绝不平庸",  
31 - "commentPics": "",  
32 - "commentType": "1",  
33 - "fromUserName": "胡德清",  
34 - "id": 58109773  
35 - },  
36 - "parentId": 58109773,  
37 - "rootCommentId": 58109773,  
38 - "sensitiveExist": 0,  
39 - "sensitiveShow": 1,  
40 - "shareInfo": {  
41 - "shareCoverUrl": "",  
42 - "shareSummary": "读书,就是一个让生命变得更加辽阔的过程",  
43 - "shareTitle": "读书,就是低着头向上看",  
44 - "shareUrl": "https://people.pdnews.cn/column/30044549051-500005339313"  
45 - },  
46 - "targetId": "30044549051",  
47 - "targetRelId": "500005339313",  
48 - "targetRelObjectId": "2002",  
49 - "targetRelType": 1,  
50 - "targetStatus": 0,  
51 - "targetTitle": "读书,就是低着头向上看",  
52 - "targetType": 13,  
53 - "topicType": null,  
54 - "uuid": "6425f699-d762-4d33-b73c-64c780fc9693"  
55 - },  
56 - {  
57 - "avatarFrame": "",  
58 - "checkStatus": 0,  
59 - "commentContent": "你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突你牛魔突突突突兔兔突突突",  
60 - "commentContentSensitive": "",  
61 - "commentLevel": 2,  
62 - "commentPics": "",  
63 - "commentSensitive": "",  
64 - "commentType": "2",  
65 - "createTime": "2024-04-24 10:21:42",  
66 - "fromCreatorId": "",  
67 - "fromDeviceId": "",  
68 - "fromUserHeader": "https://rmrbcmsonline.peopleapp.com/upload/default.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
69 - "fromUserId": "559509019499205",  
70 - "fromUserName": "人民wH38q",  
71 - "fromUserType": 1,  
72 - "h5Url": "",  
73 - "id": 58092145,  
74 - "keyArticle": 0,  
75 - "likeNum": 0,  
76 - "pageId": null,  
77 - "parentCommentVo": {  
78 - "avatarFrame": "",  
79 - "checkStatus": 2,  
80 - "commentContent": "这是继续把自己塑造成受害者角色,其实不过是历史原因造成,这也改不了以色列这半年来对加沙人民的种族灭绝行为!",  
81 - "commentPics": "",  
82 - "commentType": "1",  
83 - "fromUserName": "人民pn5SI",  
84 - "id": 58063914  
85 - },  
86 - "parentId": 58063914,  
87 - "rootCommentId": 58063914,  
88 - "sensitiveExist": 0,  
89 - "sensitiveShow": 1,  
90 - "shareInfo": {  
91 - "shareCoverUrl": "",  
92 - "shareSummary": "报道说,福克斯请辞与以国防军军事情报局局长哈利瓦的辞职没有关联。",  
93 - "shareTitle": "以色列媒体:以军中央司令部司令请辞",  
94 - "shareUrl": "https://people.pdnews.cn/column/30044533884-500005335271"  
95 - },  
96 - "targetId": "30044533884",  
97 - "targetRelId": "500005335271",  
98 - "targetRelObjectId": "2002",  
99 - "targetRelType": 1,  
100 - "targetStatus": 0,  
101 - "targetTitle": "以色列媒体:以军中央司令部司令请辞",  
102 - "targetType": 8,  
103 - "topicType": null,  
104 - "uuid": "0950adb8-542c-4c11-bc0c-708b1b41554d"  
105 - },  
106 - {  
107 - "avatarFrame": "",  
108 - "checkStatus": 3,  
109 - "commentContent": "【华为】您报名的“鸿蒙生态学堂·线上培训 第二期”直播于今晚19:00开始。本次主题:HarmonyOS NEXT 界面开发,点击观看https://url.cloud.huawei.com/q56YcuTFvO。回放观看https://url.cloud.huawei.com/q5Upzl3GOA。【华为】您报名的“鸿蒙生态学堂·线上培训 第二期”直播于今晚19:00开始。本次主题:HarmonyOS NEXT 界面开发,点击观看https://url.cloud.huawei.com/q56YcuTFvO。回放观看https://url.cloud.huawei.com/q5Upzl3GOA。【华为】您报名的“鸿蒙生态学堂·线上培训 第二期”直播于今晚19:00开始。本次主题:HarmonyOS NEXT 界面开发,点击观看https://url.cloud.huawei.com/q56YcuTFvO。回放观看https://url.cloud.huawei.com/q5Upzl3GOA。【华为】您报名的“鸿蒙生态学堂·线上培训 第二期”直播于今晚19:00开始。本次主题:HarmonyOS NEXT 界面开发,点击观看https://url.cloud.huawei.com/q56YcuTFvO。回放观看https://url.cloud.huawei.com/q5Upzl3GOA。",  
110 - "commentContentSensitive": "",  
111 - "commentLevel": 1,  
112 - "commentPics": "",  
113 - "commentSensitive": "",  
114 - "commentType": "2",  
115 - "createTime": "2024-04-24 10:19:22",  
116 - "fromCreatorId": "",  
117 - "fromDeviceId": "",  
118 - "fromUserHeader": "https://rmrbcmsonline.peopleapp.com/upload/default.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
119 - "fromUserId": "559509019499205",  
120 - "fromUserName": "人民wH38q",  
121 - "fromUserType": 1,  
122 - "h5Url": "",  
123 - "id": 58091980,  
124 - "keyArticle": 0,  
125 - "likeNum": 0,  
126 - "pageId": null,  
127 - "parentCommentVo": null,  
128 - "parentId": -1,  
129 - "rootCommentId": 58091980,  
130 - "sensitiveExist": 0,  
131 - "sensitiveShow": 1,  
132 - "shareInfo": {  
133 - "shareCoverUrl": "",  
134 - "shareSummary": "报道说,福克斯请辞与以国防军军事情报局局长哈利瓦的辞职没有关联。",  
135 - "shareTitle": "以色列媒体:以军中央司令部司令请辞",  
136 - "shareUrl": "https://people.pdnews.cn/column/30044533884-500005335271"  
137 - },  
138 - "targetId": "30044533884",  
139 - "targetRelId": "500005335271",  
140 - "targetRelObjectId": "2002",  
141 - "targetRelType": 1,  
142 - "targetStatus": 0,  
143 - "targetTitle": "以色列媒体:以军中央司令部司令请辞",  
144 - "targetType": 8,  
145 - "topicType": null,  
146 - "uuid": "320ac584-4ad9-4c38-822d-82dcbf366063"  
147 - },  
148 - {  
149 - "avatarFrame": "",  
150 - "checkStatus": 0,  
151 - "commentContent": "说得好",  
152 - "commentContentSensitive": "",  
153 - "commentLevel": 2,  
154 - "commentPics": "",  
155 - "commentSensitive": "",  
156 - "commentType": "2",  
157 - "createTime": "2024-04-24 10:17:30",  
158 - "fromCreatorId": "",  
159 - "fromDeviceId": "",  
160 - "fromUserHeader": "https://rmrbcmsonline.peopleapp.com/upload/default.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
161 - "fromUserId": "559509019499205",  
162 - "fromUserName": "人民wH38q",  
163 - "fromUserType": 1,  
164 - "h5Url": "",  
165 - "id": 58091767,  
166 - "keyArticle": 0,  
167 - "likeNum": 0,  
168 - "pageId": null,  
169 - "parentCommentVo": {  
170 - "avatarFrame": "",  
171 - "checkStatus": 2,  
172 - "commentContent": "一级战犯!",  
173 - "commentPics": "",  
174 - "commentType": "1",  
175 - "fromUserName": "一把火",  
176 - "id": 57995700  
177 - },  
178 - "parentId": 57995700,  
179 - "rootCommentId": 57995700,  
180 - "sensitiveExist": 0,  
181 - "sensitiveShow": 1,  
182 - "shareInfo": {  
183 - "shareCoverUrl": "",  
184 - "shareSummary": "报道说,福克斯请辞与以国防军军事情报局局长哈利瓦的辞职没有关联。",  
185 - "shareTitle": "以色列媒体:以军中央司令部司令请辞",  
186 - "shareUrl": "https://people.pdnews.cn/column/30044533884-500005335271"  
187 - },  
188 - "targetId": "30044533884",  
189 - "targetRelId": "500005335271",  
190 - "targetRelObjectId": "2002",  
191 - "targetRelType": 1,  
192 - "targetStatus": 0,  
193 - "targetTitle": "以色列媒体:以军中央司令部司令请辞",  
194 - "targetType": 8,  
195 - "topicType": null,  
196 - "uuid": "a8f009c7-6fa1-44c9-bc99-107d14acbac7"  
197 - },  
198 - {  
199 - "avatarFrame": "",  
200 - "checkStatus": 2,  
201 - "commentContent": "你好",  
202 - "commentContentSensitive": "",  
203 - "commentLevel": 1,  
204 - "commentPics": "",  
205 - "commentSensitive": "",  
206 - "commentType": "2",  
207 - "createTime": "2024-04-19 16:19:02",  
208 - "fromCreatorId": "",  
209 - "fromDeviceId": "",  
210 - "fromUserHeader": "https://rmrbcmsonline.peopleapp.com/upload/default.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
211 - "fromUserId": "559509019499205",  
212 - "fromUserName": "人民wH38q",  
213 - "fromUserType": 1,  
214 - "h5Url": "",  
215 - "id": 57870182,  
216 - "keyArticle": 1,  
217 - "likeNum": 0,  
218 - "pageId": null,  
219 - "parentCommentVo": null,  
220 - "parentId": -1,  
221 - "rootCommentId": 57870182,  
222 - "sensitiveExist": 0,  
223 - "sensitiveShow": 1,  
224 - "shareInfo": {  
225 - "shareCoverUrl": "https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240419/a_965759026988052480.jpeg",  
226 - "shareSummary": "中央宣传部直属单位2024年度公开招聘工作人员面试公告",  
227 - "shareTitle": "中央宣传部直属单位2024年度公开招聘工作人员面试公告",  
228 - "shareUrl": "https://people.pdnews.cn/rmharticle/30044466109"  
229 - },  
230 - "targetId": "30044466109",  
231 - "targetRelId": "500005326186",  
232 - "targetRelObjectId": "2058",  
233 - "targetRelType": 1,  
234 - "targetStatus": 0,  
235 - "targetTitle": "中央宣传部直属单位2024年度公开招聘工作人员面试公告",  
236 - "targetType": 8,  
237 - "topicType": null,  
238 - "uuid": "849612f9-3880-4e7a-a8c3-d7281706ec0e"  
239 - }  
240 - ],  
241 - "pageNum": 1,  
242 - "pageSize": 20,  
243 - "totalCommentNum": 5,  
244 - "totalCount": 5  
245 - },  
246 - "message": "Success",  
247 - "meta": null,  
248 - "requestId": "",  
249 - "success": true,  
250 - "timestamp": 1713925942006  
251 -}  
1 -{  
2 - "code": "0",  
3 - "data": {  
4 - "hasNext": 0,  
5 - "list": [  
6 - {  
7 - "attentionCreatorId": "3214877",  
8 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//upload/ueditor/image/20231227/a_924511395855200256.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
9 - "attentionNum": 0,  
10 - "attentionUserId": "508051203257158",  
11 - "attentionUserName": "北京交通运输职业学院",  
12 - "attentionUserType": 2,  
13 - "authIcon": "",  
14 - "authId": 0,  
15 - "authPersional": "",  
16 - "authTitle": "",  
17 - "banControl": 0,  
18 - "categoryAuth": "",  
19 - "cnLiveCommentControl": 1,  
20 - "cnLiveGiftControl": 1,  
21 - "cnLiveLikeControl": 1,  
22 - "cnLiveShareControl": 1,  
23 - "cnShareControl": 1,  
24 - "collectNum": 0,  
25 - "commentNum": 0,  
26 - "createTime": 1710742365000,  
27 - "fansNum": 1,  
28 - "honoraryIcon": "",  
29 - "honoraryTitle": "",  
30 - "id": 100704,  
31 - "introduction": "北京交通运输职业学院",  
32 - "isAttention": null,  
33 - "isComment": 1,  
34 - "isLike": 1,  
35 - "isVisiable": 1,  
36 - "likeNum": 0,  
37 - "liveCommentControl": 1,  
38 - "liveGiftControl": 1,  
39 - "liveLikeControl": 1,  
40 - "liveShareControl": 1,  
41 - "mainControl": 1,  
42 - "posterShareControl": 1,  
43 - "registTime": 1599214346000,  
44 - "shareControl": 1,  
45 - "shareNum": 0,  
46 - "status": 1,  
47 - "subjectType": null,  
48 - "updateTime": 1710742365000,  
49 - "userId": "567387477063621",  
50 - "userType": 1  
51 - },  
52 - {  
53 - "attentionCreatorId": "3092827",  
54 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//upload/user_app/201907/rmrb_Mw5PyAQe1563349003.jpg?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
55 - "attentionNum": 0,  
56 - "attentionUserId": "507982569927494",  
57 - "attentionUserName": "3G楼市周刊合肥站",  
58 - "attentionUserType": 5,  
59 - "authIcon": "",  
60 - "authId": 0,  
61 - "authPersional": "",  
62 - "authTitle": "",  
63 - "banControl": 0,  
64 - "categoryAuth": "",  
65 - "cnLiveCommentControl": 1,  
66 - "cnLiveGiftControl": 1,  
67 - "cnLiveLikeControl": 1,  
68 - "cnLiveShareControl": 1,  
69 - "cnShareControl": 1,  
70 - "collectNum": 0,  
71 - "commentNum": 0,  
72 - "createTime": 1710410008000,  
73 - "fansNum": 1,  
74 - "honoraryIcon": "",  
75 - "honoraryTitle": "",  
76 - "id": 200711,  
77 - "introduction": "3G楼市周刊合肥站官方",  
78 - "isAttention": null,  
79 - "isComment": 1,  
80 - "isLike": 1,  
81 - "isVisiable": 1,  
82 - "likeNum": 0,  
83 - "liveCommentControl": 1,  
84 - "liveGiftControl": 1,  
85 - "liveLikeControl": 1,  
86 - "liveShareControl": 1,  
87 - "mainControl": 0,  
88 - "posterShareControl": 1,  
89 - "registTime": 1559098504000,  
90 - "shareControl": 1,  
91 - "shareNum": 0,  
92 - "status": 1,  
93 - "subjectType": null,  
94 - "updateTime": 1710410008000,  
95 - "userId": "567387477063621",  
96 - "userType": 1  
97 - },  
98 - {  
99 - "attentionCreatorId": "3022148",  
100 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//upload/zw/bjh_image/1550310502_bb68cf1fc0ba566b3bdd77bb8648d7a8.jpeg?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
101 - "attentionNum": 0,  
102 - "attentionUserId": "504980189045893",  
103 - "attentionUserName": "庐州房产网",  
104 - "attentionUserType": 2,  
105 - "authIcon": "",  
106 - "authId": 0,  
107 - "authPersional": "",  
108 - "authTitle": "",  
109 - "banControl": 0,  
110 - "categoryAuth": "",  
111 - "cnLiveCommentControl": 1,  
112 - "cnLiveGiftControl": 1,  
113 - "cnLiveLikeControl": 1,  
114 - "cnLiveShareControl": 1,  
115 - "cnShareControl": 1,  
116 - "collectNum": 0,  
117 - "commentNum": 0,  
118 - "createTime": 1710410008000,  
119 - "fansNum": 1,  
120 - "honoraryIcon": "",  
121 - "honoraryTitle": "",  
122 - "id": 200709,  
123 - "introduction": "专注古城庐州楼市资讯",  
124 - "isAttention": null,  
125 - "isComment": 1,  
126 - "isLike": 1,  
127 - "isVisiable": 1,  
128 - "likeNum": 0,  
129 - "liveCommentControl": 1,  
130 - "liveGiftControl": 1,  
131 - "liveLikeControl": 1,  
132 - "liveShareControl": 1,  
133 - "mainControl": 1,  
134 - "posterShareControl": 1,  
135 - "registTime": 1550310442000,  
136 - "shareControl": 1,  
137 - "shareNum": 0,  
138 - "status": 1,  
139 - "subjectType": null,  
140 - "updateTime": 1710410008000,  
141 - "userId": "567387477063621",  
142 - "userType": 1  
143 - },  
144 - {  
145 - "attentionCreatorId": "3214944",  
146 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//upload/article_resource/image/1562575034_a1790012453b8d5e937e.jpeg?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
147 - "attentionNum": 0,  
148 - "attentionUserId": "508051247641414",  
149 - "attentionUserName": "民警李建国",  
150 - "attentionUserType": 5,  
151 - "authIcon": "",  
152 - "authId": 0,  
153 - "authPersional": "",  
154 - "authTitle": "",  
155 - "banControl": 0,  
156 - "categoryAuth": "",  
157 - "cnLiveCommentControl": 1,  
158 - "cnLiveGiftControl": 1,  
159 - "cnLiveLikeControl": 1,  
160 - "cnLiveShareControl": 1,  
161 - "cnShareControl": 1,  
162 - "collectNum": 0,  
163 - "commentNum": 0,  
164 - "createTime": 1710410006000,  
165 - "fansNum": 1,  
166 - "honoraryIcon": "",  
167 - "honoraryTitle": "",  
168 - "id": 200708,  
169 - "introduction": "常州市公安局新北分局民警",  
170 - "isAttention": null,  
171 - "isComment": 1,  
172 - "isLike": 1,  
173 - "isVisiable": 1,  
174 - "likeNum": 0,  
175 - "liveCommentControl": 1,  
176 - "liveGiftControl": 1,  
177 - "liveLikeControl": 1,  
178 - "liveShareControl": 1,  
179 - "mainControl": 0,  
180 - "posterShareControl": 1,  
181 - "registTime": 1560152360000,  
182 - "shareControl": 1,  
183 - "shareNum": 0,  
184 - "status": 1,  
185 - "subjectType": null,  
186 - "updateTime": 1710410006000,  
187 - "userId": "567387477063621",  
188 - "userType": 1  
189 - },  
190 - {  
191 - "attentionCreatorId": "3215205",  
192 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//upload/zw/bjh_image/1561779596_b5cdde910817d66e7561cf35cdb3b896.jpeg?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
193 - "attentionNum": 0,  
194 - "attentionUserId": "504980472120453",  
195 - "attentionUserName": "日语酱",  
196 - "attentionUserType": 2,  
197 - "authIcon": "",  
198 - "authId": 0,  
199 - "authPersional": "",  
200 - "authTitle": "",  
201 - "banControl": 0,  
202 - "categoryAuth": "",  
203 - "cnLiveCommentControl": 1,  
204 - "cnLiveGiftControl": 1,  
205 - "cnLiveLikeControl": 1,  
206 - "cnLiveShareControl": 1,  
207 - "cnShareControl": 1,  
208 - "collectNum": 0,  
209 - "commentNum": 0,  
210 - "createTime": 1710410006000,  
211 - "fansNum": 1,  
212 - "honoraryIcon": "",  
213 - "honoraryTitle": "",  
214 - "id": 200707,  
215 - "introduction": "付出不亚于任何人的努力",  
216 - "isAttention": null,  
217 - "isComment": 1,  
218 - "isLike": 1,  
219 - "isVisiable": 1,  
220 - "likeNum": 0,  
221 - "liveCommentControl": 1,  
222 - "liveGiftControl": 1,  
223 - "liveLikeControl": 1,  
224 - "liveShareControl": 1,  
225 - "mainControl": 1,  
226 - "posterShareControl": 1,  
227 - "registTime": 1560474105000,  
228 - "shareControl": 1,  
229 - "shareNum": 0,  
230 - "status": 1,  
231 - "subjectType": null,  
232 - "updateTime": 1710410006000,  
233 - "userId": "567387477063621",  
234 - "userType": 1  
235 - },  
236 - {  
237 - "attentionCreatorId": "3258463",  
238 - "attentionHeadPhotoUrl": "",  
239 - "attentionNum": 0,  
240 - "attentionUserId": "508670671396102",  
241 - "attentionUserName": "西北大学4e82",  
242 - "attentionUserType": 5,  
243 - "authIcon": "",  
244 - "authId": 0,  
245 - "authPersional": "",  
246 - "authTitle": "",  
247 - "banControl": 0,  
248 - "categoryAuth": "",  
249 - "cnLiveCommentControl": 1,  
250 - "cnLiveGiftControl": 1,  
251 - "cnLiveLikeControl": 1,  
252 - "cnLiveShareControl": 1,  
253 - "cnShareControl": 1,  
254 - "collectNum": 0,  
255 - "commentNum": 0,  
256 - "createTime": 1710409996000,  
257 - "fansNum": 1,  
258 - "honoraryIcon": "",  
259 - "honoraryTitle": "",  
260 - "id": 200706,  
261 - "introduction": "西北大学",  
262 - "isAttention": null,  
263 - "isComment": 1,  
264 - "isLike": 1,  
265 - "isVisiable": 1,  
266 - "likeNum": 0,  
267 - "liveCommentControl": 1,  
268 - "liveGiftControl": 1,  
269 - "liveLikeControl": 1,  
270 - "liveShareControl": 1,  
271 - "mainControl": 0,  
272 - "posterShareControl": 1,  
273 - "registTime": 1555554106000,  
274 - "shareControl": 1,  
275 - "shareNum": 0,  
276 - "status": 1,  
277 - "subjectType": null,  
278 - "updateTime": 1710409996000,  
279 - "userId": "567387477063621",  
280 - "userType": 1  
281 - },  
282 - {  
283 - "attentionCreatorId": "3258486",  
284 - "attentionHeadPhotoUrl": "",  
285 - "attentionNum": 0,  
286 - "attentionUserId": "508670696660230",  
287 - "attentionUserName": "扬州大学93ba",  
288 - "attentionUserType": 5,  
289 - "authIcon": "",  
290 - "authId": 0,  
291 - "authPersional": "",  
292 - "authTitle": "",  
293 - "banControl": 0,  
294 - "categoryAuth": "",  
295 - "cnLiveCommentControl": 1,  
296 - "cnLiveGiftControl": 1,  
297 - "cnLiveLikeControl": 1,  
298 - "cnLiveShareControl": 1,  
299 - "cnShareControl": 1,  
300 - "collectNum": 0,  
301 - "commentNum": 0,  
302 - "createTime": 1710409996000,  
303 - "fansNum": 1,  
304 - "honoraryIcon": "",  
305 - "honoraryTitle": "",  
306 - "id": 200705,  
307 - "introduction": "扬州大学",  
308 - "isAttention": null,  
309 - "isComment": 1,  
310 - "isLike": 1,  
311 - "isVisiable": 1,  
312 - "likeNum": 0,  
313 - "liveCommentControl": 1,  
314 - "liveGiftControl": 1,  
315 - "liveLikeControl": 1,  
316 - "liveShareControl": 1,  
317 - "mainControl": 0,  
318 - "posterShareControl": 1,  
319 - "registTime": 1555659355000,  
320 - "shareControl": 1,  
321 - "shareNum": 0,  
322 - "status": 1,  
323 - "subjectType": null,  
324 - "updateTime": 1710409996000,  
325 - "userId": "567387477063621",  
326 - "userType": 1  
327 - },  
328 - {  
329 - "attentionCreatorId": "3258575",  
330 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//upload/zw/bjh_image/1539067744_5149cb078d4ed272af470630be272023.jpeg?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
331 - "attentionNum": 0,  
332 - "attentionUserId": "509369589284102",  
333 - "attentionUserName": "旅途",  
334 - "attentionUserType": 2,  
335 - "authIcon": "",  
336 - "authId": 0,  
337 - "authPersional": "",  
338 - "authTitle": "",  
339 - "banControl": 0,  
340 - "categoryAuth": "",  
341 - "cnLiveCommentControl": 1,  
342 - "cnLiveGiftControl": 1,  
343 - "cnLiveLikeControl": 1,  
344 - "cnLiveShareControl": 1,  
345 - "cnShareControl": 1,  
346 - "collectNum": 0,  
347 - "commentNum": 0,  
348 - "createTime": 1710409989000,  
349 - "fansNum": 1,  
350 - "honoraryIcon": "",  
351 - "honoraryTitle": "",  
352 - "id": 200704,  
353 - "introduction": "背包、骑车、旅行、一个人目睹沿途的风景~",  
354 - "isAttention": null,  
355 - "isComment": 1,  
356 - "isLike": 1,  
357 - "isVisiable": 1,  
358 - "likeNum": 0,  
359 - "liveCommentControl": 1,  
360 - "liveGiftControl": 1,  
361 - "liveLikeControl": 1,  
362 - "liveShareControl": 1,  
363 - "mainControl": 1,  
364 - "posterShareControl": 1,  
365 - "registTime": 1528884167000,  
366 - "shareControl": 1,  
367 - "shareNum": 0,  
368 - "status": 1,  
369 - "subjectType": null,  
370 - "updateTime": 1710409989000,  
371 - "userId": "567387477063621",  
372 - "userType": 1  
373 - },  
374 - {  
375 - "attentionCreatorId": "3258577",  
376 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//upload/rmh/image/201905/201905160519269845.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
377 - "attentionNum": 0,  
378 - "attentionUserId": "509369595993350",  
379 - "attentionUserName": "陇海在线",  
380 - "attentionUserType": 2,  
381 - "authIcon": "",  
382 - "authId": 0,  
383 - "authPersional": "",  
384 - "authTitle": "",  
385 - "banControl": 0,  
386 - "categoryAuth": "",  
387 - "cnLiveCommentControl": 1,  
388 - "cnLiveGiftControl": 1,  
389 - "cnLiveLikeControl": 1,  
390 - "cnLiveShareControl": 1,  
391 - "cnShareControl": 1,  
392 - "collectNum": 0,  
393 - "commentNum": 0,  
394 - "createTime": 1710409989000,  
395 - "fansNum": 1,  
396 - "honoraryIcon": "",  
397 - "honoraryTitle": "",  
398 - "id": 200703,  
399 - "introduction": "在这里阅读陇海沿线城市暨淮海地区最新生活资讯!",  
400 - "isAttention": null,  
401 - "isComment": 1,  
402 - "isLike": 1,  
403 - "isVisiable": 1,  
404 - "likeNum": 0,  
405 - "liveCommentControl": 1,  
406 - "liveGiftControl": 1,  
407 - "liveLikeControl": 1,  
408 - "liveShareControl": 1,  
409 - "mainControl": 1,  
410 - "posterShareControl": 1,  
411 - "registTime": 1529015167000,  
412 - "shareControl": 1,  
413 - "shareNum": 0,  
414 - "status": 1,  
415 - "subjectType": null,  
416 - "updateTime": 1710409989000,  
417 - "userId": "567387477063621",  
418 - "userType": 1  
419 - },  
420 - {  
421 - "attentionCreatorId": "3258596",  
422 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//upload/rmh/image/201911/201911271018567208.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
423 - "attentionNum": 0,  
424 - "attentionUserId": "509403474238726",  
425 - "attentionUserName": "建筑界",  
426 - "attentionUserType": 2,  
427 - "authIcon": "",  
428 - "authId": 0,  
429 - "authPersional": "",  
430 - "authTitle": "",  
431 - "banControl": 0,  
432 - "categoryAuth": "",  
433 - "cnLiveCommentControl": 1,  
434 - "cnLiveGiftControl": 1,  
435 - "cnLiveLikeControl": 1,  
436 - "cnLiveShareControl": 1,  
437 - "cnShareControl": 1,  
438 - "collectNum": 0,  
439 - "commentNum": 0,  
440 - "createTime": 1710409988000,  
441 - "fansNum": 1,  
442 - "honoraryIcon": "",  
443 - "honoraryTitle": "",  
444 - "id": 200702,  
445 - "introduction": "匠者仁心",  
446 - "isAttention": null,  
447 - "isComment": 1,  
448 - "isLike": 1,  
449 - "isVisiable": 1,  
450 - "likeNum": 0,  
451 - "liveCommentControl": 1,  
452 - "liveGiftControl": 1,  
453 - "liveLikeControl": 1,  
454 - "liveShareControl": 1,  
455 - "mainControl": 1,  
456 - "posterShareControl": 1,  
457 - "registTime": 1550712472000,  
458 - "shareControl": 1,  
459 - "shareNum": 0,  
460 - "status": 1,  
461 - "subjectType": null,  
462 - "updateTime": 1710409988000,  
463 - "userId": "567387477063621",  
464 - "userType": 1  
465 - },  
466 - {  
467 - "attentionCreatorId": "3258601",  
468 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//upload/zw/bjh_image/1552718233_f0290f15dcbbb41d3af7ad9ed3099621.jpeg?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
469 - "attentionNum": 0,  
470 - "attentionUserId": "509403475746054",  
471 - "attentionUserName": "芳芳喜欢的科技课堂",  
472 - "attentionUserType": 2,  
473 - "authIcon": "",  
474 - "authId": 0,  
475 - "authPersional": "",  
476 - "authTitle": "",  
477 - "banControl": 0,  
478 - "categoryAuth": "",  
479 - "cnLiveCommentControl": 1,  
480 - "cnLiveGiftControl": 1,  
481 - "cnLiveLikeControl": 1,  
482 - "cnLiveShareControl": 1,  
483 - "cnShareControl": 1,  
484 - "collectNum": 0,  
485 - "commentNum": 0,  
486 - "createTime": 1710409987000,  
487 - "fansNum": 1,  
488 - "honoraryIcon": "",  
489 - "honoraryTitle": "",  
490 - "id": 200701,  
491 - "introduction": "每天分享与科技有关的新鲜事儿",  
492 - "isAttention": null,  
493 - "isComment": 1,  
494 - "isLike": 1,  
495 - "isVisiable": 1,  
496 - "likeNum": 0,  
497 - "liveCommentControl": 1,  
498 - "liveGiftControl": 1,  
499 - "liveLikeControl": 1,  
500 - "liveShareControl": 1,  
501 - "mainControl": 1,  
502 - "posterShareControl": 1,  
503 - "registTime": 1552718173000,  
504 - "shareControl": 1,  
505 - "shareNum": 0,  
506 - "status": 1,  
507 - "subjectType": null,  
508 - "updateTime": 1710409987000,  
509 - "userId": "567387477063621",  
510 - "userType": 1  
511 - },  
512 - {  
513 - "attentionCreatorId": "3258611",  
514 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//upload/zw/bjh_image/1551495924_33f73482b19cd64f0f3906b19043113a.jpeg?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
515 - "attentionNum": 0,  
516 - "attentionUserId": "509403509734662",  
517 - "attentionUserName": "西平微传媒",  
518 - "attentionUserType": 2,  
519 - "authIcon": "",  
520 - "authId": 0,  
521 - "authPersional": "",  
522 - "authTitle": "",  
523 - "banControl": 0,  
524 - "categoryAuth": "",  
525 - "cnLiveCommentControl": 1,  
526 - "cnLiveGiftControl": 1,  
527 - "cnLiveLikeControl": 1,  
528 - "cnLiveShareControl": 1,  
529 - "cnShareControl": 1,  
530 - "collectNum": 0,  
531 - "commentNum": 0,  
532 - "createTime": 1710409986000,  
533 - "fansNum": 1,  
534 - "honoraryIcon": "",  
535 - "honoraryTitle": "",  
536 - "id": 200700,  
537 - "introduction": "西平县本地信息服务、热点追踪、关注民生。",  
538 - "isAttention": null,  
539 - "isComment": 1,  
540 - "isLike": 1,  
541 - "isVisiable": 1,  
542 - "likeNum": 0,  
543 - "liveCommentControl": 1,  
544 - "liveGiftControl": 1,  
545 - "liveLikeControl": 1,  
546 - "liveShareControl": 1,  
547 - "mainControl": 1,  
548 - "posterShareControl": 1,  
549 - "registTime": 1551495864000,  
550 - "shareControl": 1,  
551 - "shareNum": 0,  
552 - "status": 1,  
553 - "subjectType": null,  
554 - "updateTime": 1710409986000,  
555 - "userId": "567387477063621",  
556 - "userType": 1  
557 - },  
558 - {  
559 - "attentionCreatorId": "3258613",  
560 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//upload/ueditor/image/20191011/a_367272241198526464.jpg?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
561 - "attentionNum": 0,  
562 - "attentionUserId": "504980253394053",  
563 - "attentionUserName": "安庆生活",  
564 - "attentionUserType": 2,  
565 - "authIcon": "",  
566 - "authId": 0,  
567 - "authPersional": "",  
568 - "authTitle": "",  
569 - "banControl": 0,  
570 - "categoryAuth": "",  
571 - "cnLiveCommentControl": 1,  
572 - "cnLiveGiftControl": 1,  
573 - "cnLiveLikeControl": 1,  
574 - "cnLiveShareControl": 1,  
575 - "cnShareControl": 1,  
576 - "collectNum": 0,  
577 - "commentNum": 0,  
578 - "createTime": 1710409985000,  
579 - "fansNum": 1,  
580 - "honoraryIcon": "",  
581 - "honoraryTitle": "",  
582 - "id": 200699,  
583 - "introduction": "传播有价值的声音,记录生活,共享精彩!\n",  
584 - "isAttention": null,  
585 - "isComment": 1,  
586 - "isLike": 1,  
587 - "isVisiable": 1,  
588 - "likeNum": 0,  
589 - "liveCommentControl": 1,  
590 - "liveGiftControl": 1,  
591 - "liveLikeControl": 1,  
592 - "liveShareControl": 1,  
593 - "mainControl": 1,  
594 - "posterShareControl": 1,  
595 - "registTime": 1551433741000,  
596 - "shareControl": 1,  
597 - "shareNum": 0,  
598 - "status": 1,  
599 - "subjectType": null,  
600 - "updateTime": 1710409985000,  
601 - "userId": "567387477063621",  
602 - "userType": 1  
603 - },  
604 - {  
605 - "attentionCreatorId": "3004851",  
606 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/vod/content/202309/202309We172415100/h2j.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
607 - "attentionNum": 0,  
608 - "attentionUserId": "444296355502149",  
609 - "attentionUserName": "0920个人",  
610 - "attentionUserType": 2,  
611 - "authIcon": "",  
612 - "authId": 0,  
613 - "authPersional": "",  
614 - "authTitle": "",  
615 - "banControl": 0,  
616 - "categoryAuth": "",  
617 - "cnLiveCommentControl": 1,  
618 - "cnLiveGiftControl": 1,  
619 - "cnLiveLikeControl": 1,  
620 - "cnLiveShareControl": 1,  
621 - "cnShareControl": 1,  
622 - "collectNum": 0,  
623 - "commentNum": 0,  
624 - "createTime": 1710409979000,  
625 - "fansNum": 9,  
626 - "honoraryIcon": "https://cdn.aikan.pdnews.cn/image/picture/202312/20231223173451966FdV.png",  
627 - "honoraryTitle": "快乐星球",  
628 - "id": 200698,  
629 - "introduction": "账号简介",  
630 - "isAttention": null,  
631 - "isComment": 1,  
632 - "isLike": 1,  
633 - "isVisiable": 1,  
634 - "likeNum": 6,  
635 - "liveCommentControl": 1,  
636 - "liveGiftControl": 1,  
637 - "liveLikeControl": 1,  
638 - "liveShareControl": 1,  
639 - "mainControl": 1,  
640 - "posterShareControl": 1,  
641 - "registTime": 1695201858000,  
642 - "shareControl": 1,  
643 - "shareNum": 0,  
644 - "status": 1,  
645 - "subjectType": null,  
646 - "updateTime": 1710409979000,  
647 - "userId": "567387477063621",  
648 - "userType": 1  
649 - },  
650 - {  
651 - "attentionCreatorId": "3004853",  
652 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/image/creator/2023092715/4727ab5db7604dbbac9ffb94ed03614e.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
653 - "attentionNum": 1,  
654 - "attentionUserId": "444300764043333",  
655 - "attentionUserName": "创作者账号7777",  
656 - "attentionUserType": 2,  
657 - "authIcon": "https://sitcontentjdcdn.aikan.pdnews.cn/creator-category/icon/auth/yellow.png",  
658 - "authId": 2,  
659 - "authPersional": "",  
660 - "authTitle": "黄VV",  
661 - "banControl": 0,  
662 - "categoryAuth": "黄VV",  
663 - "cnLiveCommentControl": 1,  
664 - "cnLiveGiftControl": 1,  
665 - "cnLiveLikeControl": 1,  
666 - "cnLiveShareControl": 1,  
667 - "cnShareControl": 1,  
668 - "collectNum": 1,  
669 - "commentNum": 7,  
670 - "createTime": 1710409979000,  
671 - "fansNum": 13,  
672 - "honoraryIcon": "",  
673 - "honoraryTitle": "",  
674 - "id": 200697,  
675 - "introduction": "协作平台是进行团队开发、协作的系统,一般是基于互联网,也有用专业网的情况。协作平台的主要功能是:分工合作、进度控制、版本控制等功能。协作平台是进行团队开发、协作的系统,一般是基于互联网,也有用专业网的情况。协作平台的主要功能是:分工合作、进度控制、版本控制等功能。协作平台是进行团队开发、协作的系统,一般是基于互联网,也有用专业网的情况。协作平台的主要功能是:分工合作、进度控制、版本控制等功能。协作",  
676 - "isAttention": null,  
677 - "isComment": 1,  
678 - "isLike": 1,  
679 - "isVisiable": 1,  
680 - "likeNum": 0,  
681 - "liveCommentControl": 1,  
682 - "liveGiftControl": 1,  
683 - "liveLikeControl": 1,  
684 - "liveShareControl": 1,  
685 - "mainControl": 1,  
686 - "posterShareControl": 0,  
687 - "registTime": 1695202406000,  
688 - "shareControl": 1,  
689 - "shareNum": 0,  
690 - "status": 1,  
691 - "subjectType": null,  
692 - "updateTime": 1710409979000,  
693 - "userId": "567387477063621",  
694 - "userType": 1  
695 - },  
696 - {  
697 - "attentionCreatorId": "3004849",  
698 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/vod/content/202309/202309We140931534/CIX.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
699 - "attentionNum": 0,  
700 - "attentionUserId": "444200272593477",  
701 - "attentionUserName": "zhuaqu005",  
702 - "attentionUserType": 2,  
703 - "authIcon": "",  
704 - "authId": 0,  
705 - "authPersional": "",  
706 - "authTitle": "",  
707 - "banControl": 0,  
708 - "categoryAuth": "",  
709 - "cnLiveCommentControl": 1,  
710 - "cnLiveGiftControl": 1,  
711 - "cnLiveLikeControl": 1,  
712 - "cnLiveShareControl": 1,  
713 - "cnShareControl": 1,  
714 - "collectNum": 0,  
715 - "commentNum": 0,  
716 - "createTime": 1710409978000,  
717 - "fansNum": 10,  
718 - "honoraryIcon": "",  
719 - "honoraryTitle": "",  
720 - "id": 200696,  
721 - "introduction": "aaa",  
722 - "isAttention": null,  
723 - "isComment": 1,  
724 - "isLike": 1,  
725 - "isVisiable": 1,  
726 - "likeNum": 0,  
727 - "liveCommentControl": 1,  
728 - "liveGiftControl": 1,  
729 - "liveLikeControl": 1,  
730 - "liveShareControl": 1,  
731 - "mainControl": 1,  
732 - "posterShareControl": 1,  
733 - "registTime": 1695190066000,  
734 - "shareControl": 1,  
735 - "shareNum": 0,  
736 - "status": 1,  
737 - "subjectType": null,  
738 - "updateTime": 1710409978000,  
739 - "userId": "567387477063621",  
740 - "userType": 1  
741 - },  
742 - {  
743 - "attentionCreatorId": "3004841",  
744 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/vod/content/202309/202309Tu155358686/Clu.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
745 - "attentionNum": 0,  
746 - "attentionUserId": "443539162419717",  
747 - "attentionUserName": "好主播007",  
748 - "attentionUserType": 2,  
749 - "authIcon": "",  
750 - "authId": 0,  
751 - "authPersional": "",  
752 - "authTitle": "",  
753 - "banControl": 0,  
754 - "categoryAuth": "",  
755 - "cnLiveCommentControl": 1,  
756 - "cnLiveGiftControl": 1,  
757 - "cnLiveLikeControl": 1,  
758 - "cnLiveShareControl": 1,  
759 - "cnShareControl": 1,  
760 - "collectNum": 0,  
761 - "commentNum": 0,  
762 - "createTime": 1710409975000,  
763 - "fansNum": 12,  
764 - "honoraryIcon": "",  
765 - "honoraryTitle": "",  
766 - "id": 200695,  
767 - "introduction": "qqq",  
768 - "isAttention": null,  
769 - "isComment": 1,  
770 - "isLike": 1,  
771 - "isVisiable": 1,  
772 - "likeNum": 0,  
773 - "liveCommentControl": 1,  
774 - "liveGiftControl": 1,  
775 - "liveLikeControl": 1,  
776 - "liveShareControl": 1,  
777 - "mainControl": 0,  
778 - "posterShareControl": 1,  
779 - "registTime": 1695110042000,  
780 - "shareControl": 1,  
781 - "shareNum": 0,  
782 - "status": 1,  
783 - "subjectType": null,  
784 - "updateTime": 1710409975000,  
785 - "userId": "567387477063621",  
786 - "userType": 1  
787 - },  
788 - {  
789 - "attentionCreatorId": "3004835",  
790 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/vod/content/202309/20230919113007795/7uI.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
791 - "attentionNum": 0,  
792 - "attentionUserId": "443416920261445",  
793 - "attentionUserName": "随风而起",  
794 - "attentionUserType": 2,  
795 - "authIcon": "",  
796 - "authId": 0,  
797 - "authPersional": "",  
798 - "authTitle": "",  
799 - "banControl": 0,  
800 - "categoryAuth": "",  
801 - "cnLiveCommentControl": 1,  
802 - "cnLiveGiftControl": 1,  
803 - "cnLiveLikeControl": 1,  
804 - "cnLiveShareControl": 1,  
805 - "cnShareControl": 1,  
806 - "collectNum": 0,  
807 - "commentNum": 0,  
808 - "createTime": 1710409975000,  
809 - "fansNum": 2291,  
810 - "honoraryIcon": "",  
811 - "honoraryTitle": "",  
812 - "id": 200694,  
813 - "introduction": "灰度号主",  
814 - "isAttention": null,  
815 - "isComment": 1,  
816 - "isLike": 1,  
817 - "isVisiable": 1,  
818 - "likeNum": 0,  
819 - "liveCommentControl": 1,  
820 - "liveGiftControl": 1,  
821 - "liveLikeControl": 1,  
822 - "liveShareControl": 1,  
823 - "mainControl": 0,  
824 - "posterShareControl": 1,  
825 - "registTime": 1695094442000,  
826 - "shareControl": 1,  
827 - "shareNum": 0,  
828 - "status": 1,  
829 - "subjectType": null,  
830 - "updateTime": 1710409975000,  
831 - "userId": "567387477063621",  
832 - "userType": 1  
833 - }  
834 - ],  
835 - "pageNum": 1,  
836 - "pageSize": 20,  
837 - "totalCount": 18  
838 - },  
839 - "message": "Success",  
840 - "meta": null,  
841 - "requestId": "",  
842 - "success": true,  
843 - "timestamp": 1710989304704  
844 -}  
1 -{  
2 - "code": "0",  
3 - "data": {  
4 - "articleCreation": 0,  
5 - "attentionNum": 22,  
6 - "authIcon": "",  
7 - "authId": 0,  
8 - "authPersonal": "",  
9 - "authTitle": "",  
10 - "avatarFrame": "",  
11 - "browseNum": 22,  
12 - "categoryAuth": "",  
13 - "city": "",  
14 - "cnContentPublish": 0,  
15 - "cnLivePublish": 0,  
16 - "cnShareControl": 0,  
17 - "collectNum": 4,  
18 - "commentNum": 0,  
19 - "contentPublish": 0,  
20 - "creatorId": "",  
21 - "district": "",  
22 - "dynamicControl": 0,  
23 - "dynamicCreation": 0,  
24 - "fansNum": 0,  
25 - "headPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn//img/user/2024031215/48d5bd53227d436b9faa937b3ac14600.png",  
26 - "honoraryIcon": "",  
27 - "honoraryTitle": "",  
28 - "introduction": "",  
29 - "isComment": 0,  
30 - "isLike": 0,  
31 - "livePublish": 0,  
32 - "liveSwitch": 1,  
33 - "mainControl": 1,  
34 - "originUserId": "",  
35 - "pictureCollectionCreation": 0,  
36 - "posterShareControl": 1,  
37 - "province": "",  
38 - "region": "安徽省",  
39 - "registTime": 1710227567000,  
40 - "reserveNum": 6,  
41 - "shareControl": 0,  
42 - "shareUrl": "",  
43 - "speakControl": 0,  
44 - "subjectType": 0,  
45 - "userId": "567387477063621",  
46 - "userName": "人民日报网友aPrtq5",  
47 - "userType": "1",  
48 - "videoCollectionCreation": 0,  
49 - "videoCreation": 0  
50 - },  
51 - "message": "Success",  
52 - "meta": null,  
53 - "requestId": "",  
54 - "success": true,  
55 - "timestamp": 1711357314033  
56 -}  
1 -{  
2 - "code": "0",  
3 - "data": {  
4 - "createTime": "2024-03-12 15:12:47",  
5 - "id": 132386,  
6 - "levelHead": "http://rmrb-video-content-sit.oss-cn-beijing.aliyuncs.com/sjbj-20240125/image/display/88c45bf56ac941b883c69bd8ed373164.png",  
7 - "levelId": 2,  
8 - "levelName": "初入武林",  
9 - "levelNum": 155,  
10 - "modifyTime": "2024-03-25 16:35:57",  
11 - "status": 1,  
12 - "userId": 567387477063621  
13 - },  
14 - "message": "Success",  
15 - "success": true,  
16 - "timestamp": 1711357314136  
17 -}  
1 -{  
2 - "code": "0",  
3 - "data": {  
4 - "hasNext": 0,  
5 - "list": [  
6 - {  
7 - "avatarFrame": "",  
8 - "checkStatus": 2,  
9 - "commentContent": "方法就是\\ud83d\\udc4d",  
10 - "commentContentSensitive": "",  
11 - "commentLevel": 1,  
12 - "commentPics": "",  
13 - "commentSensitive": "",  
14 - "commentType": "2",  
15 - "createTime": "2024-02-19 14:14:16",  
16 - "fromCreatorId": "",  
17 - "fromDeviceId": "F0B98E7F-6479-462C-BA25-5FC574511C8A",  
18 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
19 - "fromUserId": "512157124138245",  
20 - "fromUserName": "树下🍑 1122334",  
21 - "fromUserType": 1,  
22 - "h5Url": "",  
23 - "id": 403445,  
24 - "keyArticle": 0,  
25 - "likeNum": 3,  
26 - "pageId": null,  
27 - "parentCommentVo": null,  
28 - "parentId": -1,  
29 - "rootCommentId": 403445,  
30 - "sensitiveExist": 0,  
31 - "sensitiveShow": 1,  
32 - "shareInfo": {  
33 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231012/image/content/7f1a342a809d4276aa975ba9e7fe2313.png",  
34 - "shareSummary": "这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是",  
35 - "shareTitle": "这是一个开始、请持续关注这是一个开始、请",  
36 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000633703-500000008559"  
37 - },  
38 - "targetId": "30000633703",  
39 - "targetRelId": "500000008559",  
40 - "targetRelObjectId": "2002",  
41 - "targetRelType": 1,  
42 - "targetStatus": 0,  
43 - "targetTitle": "这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注",  
44 - "targetType": 8,  
45 - "topicType": null,  
46 - "uuid": "5901a353-79aa-4b81-81d7-f6f13f0a6817"  
47 - },  
48 - {  
49 - "avatarFrame": "",  
50 - "checkStatus": 2,  
51 - "commentContent": "毕业",  
52 - "commentContentSensitive": "",  
53 - "commentLevel": 1,  
54 - "commentPics": "",  
55 - "commentSensitive": "",  
56 - "commentType": "2",  
57 - "createTime": "2024-01-29 17:39:04",  
58 - "fromCreatorId": "",  
59 - "fromDeviceId": "",  
60 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
61 - "fromUserId": "512157124138245",  
62 - "fromUserName": "树下🍑 1122334",  
63 - "fromUserType": 1,  
64 - "h5Url": "",  
65 - "id": 303318,  
66 - "keyArticle": 0,  
67 - "likeNum": 0,  
68 - "pageId": null,  
69 - "parentCommentVo": null,  
70 - "parentId": -1,  
71 - "rootCommentId": 303318,  
72 - "sensitiveExist": 0,  
73 - "sensitiveShow": 1,  
74 - "shareInfo": {  
75 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20230923/image/content/4b8f615d1b134546aa4903300c38fb5b.png",  
76 - "shareSummary": "人民日报,有品质的新闻",  
77 - "shareTitle": "【广东爱情故事】人在广东已经漂泊十年",  
78 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000627490-500000007811"  
79 - },  
80 - "targetId": "30000627490",  
81 - "targetRelId": "500000007811",  
82 - "targetRelObjectId": "10000002083",  
83 - "targetRelType": 2,  
84 - "targetStatus": 0,  
85 - "targetTitle": "【广东爱情故事】人在广东已经漂泊十年",  
86 - "targetType": 13,  
87 - "topicType": null,  
88 - "uuid": "59339983-a9ee-4054-98aa-0eddbc6275a1"  
89 - },  
90 - {  
91 - "avatarFrame": "",  
92 - "checkStatus": 2,  
93 - "commentContent": "索尼👍",  
94 - "commentContentSensitive": "",  
95 - "commentLevel": 1,  
96 - "commentPics": "",  
97 - "commentSensitive": "",  
98 - "commentType": "2",  
99 - "createTime": "2024-01-29 17:38:56",  
100 - "fromCreatorId": "",  
101 - "fromDeviceId": "",  
102 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
103 - "fromUserId": "512157124138245",  
104 - "fromUserName": "树下🍑 1122334",  
105 - "fromUserType": 1,  
106 - "h5Url": "",  
107 - "id": 303317,  
108 - "keyArticle": 0,  
109 - "likeNum": 0,  
110 - "pageId": null,  
111 - "parentCommentVo": null,  
112 - "parentId": -1,  
113 - "rootCommentId": 303317,  
114 - "sensitiveExist": 0,  
115 - "sensitiveShow": 1,  
116 - "shareInfo": {  
117 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20230923/image/content/4b8f615d1b134546aa4903300c38fb5b.png",  
118 - "shareSummary": "人民日报,有品质的新闻",  
119 - "shareTitle": "【广东爱情故事】人在广东已经漂泊十年",  
120 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000627490-500000007811"  
121 - },  
122 - "targetId": "30000627490",  
123 - "targetRelId": "500000007811",  
124 - "targetRelObjectId": "10000002083",  
125 - "targetRelType": 2,  
126 - "targetStatus": 0,  
127 - "targetTitle": "【广东爱情故事】人在广东已经漂泊十年",  
128 - "targetType": 13,  
129 - "topicType": null,  
130 - "uuid": "8808cffa-6496-4dc9-ac79-a65c8ada09d2"  
131 - },  
132 - {  
133 - "avatarFrame": "",  
134 - "checkStatus": 2,  
135 - "commentContent": "游客评论苹果",  
136 - "commentContentSensitive": "",  
137 - "commentLevel": 1,  
138 - "commentPics": "",  
139 - "commentSensitive": "",  
140 - "commentType": "2",  
141 - "createTime": "2024-01-27 15:00:24",  
142 - "fromCreatorId": "",  
143 - "fromDeviceId": "F0B98E7F-6479-462C-BA25-5FC574511C8A",  
144 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
145 - "fromUserId": "512157124138245",  
146 - "fromUserName": "树下🍑 1122334",  
147 - "fromUserType": 1,  
148 - "h5Url": "",  
149 - "id": 403426,  
150 - "keyArticle": 0,  
151 - "likeNum": 1,  
152 - "pageId": null,  
153 - "parentCommentVo": null,  
154 - "parentId": -1,  
155 - "rootCommentId": 403426,  
156 - "sensitiveExist": 0,  
157 - "sensitiveShow": 1,  
158 - "shareInfo": {  
159 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231012/image/content/7f1a342a809d4276aa975ba9e7fe2313.png",  
160 - "shareSummary": "这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是",  
161 - "shareTitle": "这是一个开始、请持续关注这是一个开始、请",  
162 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000633703-500000008559"  
163 - },  
164 - "targetId": "30000633703",  
165 - "targetRelId": "500000008559",  
166 - "targetRelObjectId": "2002",  
167 - "targetRelType": 1,  
168 - "targetStatus": 0,  
169 - "targetTitle": "这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注",  
170 - "targetType": 8,  
171 - "topicType": null,  
172 - "uuid": "a272d091-3697-44ca-95e6-532028eee776"  
173 - },  
174 - {  
175 - "avatarFrame": "",  
176 - "checkStatus": 2,  
177 - "commentContent": "游客账号评论安卓",  
178 - "commentContentSensitive": "",  
179 - "commentLevel": 1,  
180 - "commentPics": "",  
181 - "commentSensitive": "",  
182 - "commentType": "2",  
183 - "createTime": "2024-01-27 15:00:15",  
184 - "fromCreatorId": "",  
185 - "fromDeviceId": "23c43f15-37e9-3f2d-9999-bd1abbb7e0ed",  
186 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
187 - "fromUserId": "512157124138245",  
188 - "fromUserName": "树下🍑 1122334",  
189 - "fromUserType": 1,  
190 - "h5Url": "",  
191 - "id": 403425,  
192 - "keyArticle": 0,  
193 - "likeNum": 0,  
194 - "pageId": null,  
195 - "parentCommentVo": null,  
196 - "parentId": -1,  
197 - "rootCommentId": 403425,  
198 - "sensitiveExist": 0,  
199 - "sensitiveShow": 1,  
200 - "shareInfo": {  
201 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231012/image/content/7f1a342a809d4276aa975ba9e7fe2313.png",  
202 - "shareSummary": "这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是",  
203 - "shareTitle": "这是一个开始、请持续关注这是一个开始、请",  
204 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000633703-500000008559"  
205 - },  
206 - "targetId": "30000633703",  
207 - "targetRelId": "500000008559",  
208 - "targetRelObjectId": "2002",  
209 - "targetRelType": 1,  
210 - "targetStatus": 0,  
211 - "targetTitle": "这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注这是一个开始、请持续关注",  
212 - "targetType": 8,  
213 - "topicType": null,  
214 - "uuid": "62225e7a-9afd-4b8c-b9b6-71a5d610997d"  
215 - },  
216 - {  
217 - "avatarFrame": "",  
218 - "checkStatus": 2,  
219 - "commentContent": "你理解吗",  
220 - "commentContentSensitive": "",  
221 - "commentLevel": 1,  
222 - "commentPics": "",  
223 - "commentSensitive": "",  
224 - "commentType": "2",  
225 - "createTime": "2024-01-27 14:45:21",  
226 - "fromCreatorId": "",  
227 - "fromDeviceId": "23c43f15-37e9-3f2d-9999-bd1abbb7e0ed",  
228 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
229 - "fromUserId": "512157124138245",  
230 - "fromUserName": "树下🍑 1122334",  
231 - "fromUserType": 1,  
232 - "h5Url": "",  
233 - "id": 403422,  
234 - "keyArticle": 0,  
235 - "likeNum": 0,  
236 - "pageId": null,  
237 - "parentCommentVo": null,  
238 - "parentId": -1,  
239 - "rootCommentId": 403422,  
240 - "sensitiveExist": 0,  
241 - "sensitiveShow": 1,  
242 - "shareInfo": {  
243 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231130/image/content/09ee931569d34781b9bbe85f5348873f.jpg",  
244 - "shareSummary": "人民日报,有品质的新闻",  
245 - "shareTitle": "点亮香港“小航天迷”的“太空梦”——内地航天专家走进香港中小学校园",  
246 - "shareUrl": "https://pd-people-sit.pdnews.cn/rmhphotos/30000650925"  
247 - },  
248 - "targetId": "30000650925",  
249 - "targetRelId": "500000013228",  
250 - "targetRelObjectId": "2058",  
251 - "targetRelType": 1,  
252 - "targetStatus": 0,  
253 - "targetTitle": "点亮香港“小航天迷”的“太空梦”——内地航天专家走进香港中小学校园",  
254 - "targetType": 9,  
255 - "topicType": null,  
256 - "uuid": "cc6b2322-ffa4-4a59-a7af-5e4a18afcbd3"  
257 - },  
258 - {  
259 - "avatarFrame": "",  
260 - "checkStatus": 2,  
261 - "commentContent": "你好我是游客",  
262 - "commentContentSensitive": "",  
263 - "commentLevel": 1,  
264 - "commentPics": "",  
265 - "commentSensitive": "",  
266 - "commentType": "2",  
267 - "createTime": "2024-01-27 14:40:19",  
268 - "fromCreatorId": "",  
269 - "fromDeviceId": "23c43f15-37e9-3f2d-9999-bd1abbb7e0ed",  
270 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
271 - "fromUserId": "512157124138245",  
272 - "fromUserName": "树下🍑 1122334",  
273 - "fromUserType": 1,  
274 - "h5Url": "",  
275 - "id": 303306,  
276 - "keyArticle": 0,  
277 - "likeNum": 0,  
278 - "pageId": null,  
279 - "parentCommentVo": null,  
280 - "parentId": -1,  
281 - "rootCommentId": 303306,  
282 - "sensitiveExist": 0,  
283 - "sensitiveShow": 1,  
284 - "shareInfo": {  
285 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231130/image/content/09ee931569d34781b9bbe85f5348873f.jpg",  
286 - "shareSummary": "人民日报,有品质的新闻",  
287 - "shareTitle": "点亮香港“小航天迷”的“太空梦”——内地航天专家走进香港中小学校园",  
288 - "shareUrl": "https://pd-people-sit.pdnews.cn/rmhphotos/30000650925"  
289 - },  
290 - "targetId": "30000650925",  
291 - "targetRelId": "500000013228",  
292 - "targetRelObjectId": "2058",  
293 - "targetRelType": 1,  
294 - "targetStatus": 0,  
295 - "targetTitle": "点亮香港“小航天迷”的“太空梦”——内地航天专家走进香港中小学校园",  
296 - "targetType": 9,  
297 - "topicType": null,  
298 - "uuid": "9fac53da-603f-444a-8807-4f5feacf55bb"  
299 - },  
300 - {  
301 - "avatarFrame": "",  
302 - "checkStatus": 2,  
303 - "commentContent": "你好我是游客",  
304 - "commentContentSensitive": "",  
305 - "commentLevel": 1,  
306 - "commentPics": "",  
307 - "commentSensitive": "",  
308 - "commentType": "2",  
309 - "createTime": "2024-01-27 14:34:30",  
310 - "fromCreatorId": "",  
311 - "fromDeviceId": "23c43f15-37e9-3f2d-9999-bd1abbb7e0ed",  
312 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
313 - "fromUserId": "512157124138245",  
314 - "fromUserName": "树下🍑 1122334",  
315 - "fromUserType": 1,  
316 - "h5Url": "",  
317 - "id": 403420,  
318 - "keyArticle": 0,  
319 - "likeNum": 0,  
320 - "pageId": null,  
321 - "parentCommentVo": null,  
322 - "parentId": -1,  
323 - "rootCommentId": 403420,  
324 - "sensitiveExist": 0,  
325 - "sensitiveShow": 1,  
326 - "shareInfo": {  
327 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/image/creator/2024012911/f2f9fe93ca464d05bc0407a385ad877b.png",  
328 - "shareSummary": "爸爸角色扮演医生,在宝蓝比赛摔倒的时候悉心照顾,其他小朋友也要注意呀!",  
329 - "shareTitle": "爸爸角色扮演医生,在宝蓝比赛摔倒的时候悉心照顾,其他小朋友也要注意呀!",  
330 - "shareUrl": "https://pd-people-sit.pdnews.cn/rmhvideo/30000716043"  
331 - },  
332 - "targetId": "30000716043",  
333 - "targetRelId": "500000030952",  
334 - "targetRelObjectId": "2058",  
335 - "targetRelType": 1,  
336 - "targetStatus": 0,  
337 - "targetTitle": "爸爸角色扮演医生,在宝蓝比赛摔倒的时候悉心照顾,其他小朋友也要注意呀!",  
338 - "targetType": 1,  
339 - "topicType": null,  
340 - "uuid": "31305151-6b9c-49ea-8e5b-9e4b8fffe79d"  
341 - },  
342 - {  
343 - "avatarFrame": "",  
344 - "checkStatus": 2,  
345 - "commentContent": "游客账号",  
346 - "commentContentSensitive": "",  
347 - "commentLevel": 1,  
348 - "commentPics": "",  
349 - "commentSensitive": "",  
350 - "commentType": "2",  
351 - "createTime": "2024-01-27 14:27:52",  
352 - "fromCreatorId": "",  
353 - "fromDeviceId": "23c43f15-37e9-3f2d-9999-bd1abbb7e0ed",  
354 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
355 - "fromUserId": "512157124138245",  
356 - "fromUserName": "树下🍑 1122334",  
357 - "fromUserType": 1,  
358 - "h5Url": "",  
359 - "id": 403417,  
360 - "keyArticle": 0,  
361 - "likeNum": 0,  
362 - "pageId": null,  
363 - "parentCommentVo": null,  
364 - "parentId": -1,  
365 - "rootCommentId": 403417,  
366 - "sensitiveExist": 0,  
367 - "sensitiveShow": 1,  
368 - "shareInfo": {  
369 - "shareCoverUrl": "",  
370 - "shareSummary": "人民日报,有品质的新闻",  
371 - "shareTitle": "跟着习主席看世界|同舟共济 打造人类卫生健康共同体",  
372 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000628337-500000004210"  
373 - },  
374 - "targetId": "30000628337",  
375 - "targetRelId": "500000004210",  
376 - "targetRelObjectId": "2002",  
377 - "targetRelType": 1,  
378 - "targetStatus": 0,  
379 - "targetTitle": "跟着习主席看世界|同舟共济 打造人类卫生健康共同体",  
380 - "targetType": 8,  
381 - "topicType": null,  
382 - "uuid": "034911cc-34ca-4209-add2-46f48f4b2104"  
383 - },  
384 - {  
385 - "avatarFrame": "",  
386 - "checkStatus": 2,  
387 - "commentContent": "我是游客",  
388 - "commentContentSensitive": "",  
389 - "commentLevel": 1,  
390 - "commentPics": "",  
391 - "commentSensitive": "",  
392 - "commentType": "2",  
393 - "createTime": "2024-01-27 14:25:34",  
394 - "fromCreatorId": "",  
395 - "fromDeviceId": "F0B98E7F-6479-462C-BA25-5FC574511C8A",  
396 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
397 - "fromUserId": "512157124138245",  
398 - "fromUserName": "树下🍑 1122334",  
399 - "fromUserType": 1,  
400 - "h5Url": "",  
401 - "id": 303305,  
402 - "keyArticle": 0,  
403 - "likeNum": 0,  
404 - "pageId": null,  
405 - "parentCommentVo": null,  
406 - "parentId": -1,  
407 - "rootCommentId": 303305,  
408 - "sensitiveExist": 0,  
409 - "sensitiveShow": 1,  
410 - "shareInfo": {  
411 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20240127/image/content/e8d93872483a48c7a4eaa48f70211ab1.png",  
412 - "shareSummary": "人民日报,有品质的新闻",  
413 - "shareTitle": "“大学也有家长群",  
414 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000723442-500000031275"  
415 - },  
416 - "targetId": "30000723442",  
417 - "targetRelId": "500000031275",  
418 - "targetRelObjectId": "2002",  
419 - "targetRelType": 1,  
420 - "targetStatus": 0,  
421 - "targetTitle": "“大学也有家长群",  
422 - "targetType": 8,  
423 - "topicType": null,  
424 - "uuid": "0b0aa5ef-b2de-4d01-9f5a-274c5122560f"  
425 - },  
426 - {  
427 - "avatarFrame": "",  
428 - "checkStatus": 2,  
429 - "commentContent": "你好,我是游客动态",  
430 - "commentContentSensitive": "",  
431 - "commentLevel": 1,  
432 - "commentPics": "",  
433 - "commentSensitive": "",  
434 - "commentType": "2",  
435 - "createTime": "2024-01-27 14:24:56",  
436 - "fromCreatorId": "",  
437 - "fromDeviceId": "23c43f15-37e9-3f2d-9999-bd1abbb7e0ed",  
438 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
439 - "fromUserId": "512157124138245",  
440 - "fromUserName": "树下🍑 1122334",  
441 - "fromUserType": 1,  
442 - "h5Url": "",  
443 - "id": 303304,  
444 - "keyArticle": 0,  
445 - "likeNum": 0,  
446 - "pageId": null,  
447 - "parentCommentVo": null,  
448 - "parentId": -1,  
449 - "rootCommentId": 303304,  
450 - "sensitiveExist": 0,  
451 - "sensitiveShow": 1,  
452 - "shareInfo": {  
453 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20231130/image/content/3e0cce06724740f0807ff0731c4a1d03/C4BC1C53-2B9C-4A54-BF95-044242D78260.jpg",  
454 - "shareSummary": "发布动态带活动13",  
455 - "shareTitle": "发布动态带活动13",  
456 - "shareUrl": "https://pd-people-sit.pdnews.cn/rmhmoments/30000650969"  
457 - },  
458 - "targetId": "30000650969",  
459 - "targetRelId": "500000013237",  
460 - "targetRelObjectId": "2058",  
461 - "targetRelType": 1,  
462 - "targetStatus": 0,  
463 - "targetTitle": "发布动态带活动13",  
464 - "targetType": 14,  
465 - "topicType": null,  
466 - "uuid": "ae2b2ece-d036-4b01-91e7-9708b0b5fe1c"  
467 - },  
468 - {  
469 - "avatarFrame": "",  
470 - "checkStatus": 2,  
471 - "commentContent": "你好我是游客",  
472 - "commentContentSensitive": "",  
473 - "commentLevel": 1,  
474 - "commentPics": "",  
475 - "commentSensitive": "",  
476 - "commentType": "2",  
477 - "createTime": "2024-01-27 14:24:19",  
478 - "fromCreatorId": "",  
479 - "fromDeviceId": "23c43f15-37e9-3f2d-9999-bd1abbb7e0ed",  
480 - "fromUserHeader": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg",  
481 - "fromUserId": "512157124138245",  
482 - "fromUserName": "树下🍑 1122334",  
483 - "fromUserType": 1,  
484 - "h5Url": "",  
485 - "id": 303302,  
486 - "keyArticle": 0,  
487 - "likeNum": 0,  
488 - "pageId": null,  
489 - "parentCommentVo": null,  
490 - "parentId": -1,  
491 - "rootCommentId": 303302,  
492 - "sensitiveExist": 0,  
493 - "sensitiveShow": 1,  
494 - "shareInfo": {  
495 - "shareCoverUrl": "http://sitcontentjdcdn.aikan.pdnews.cn/zhbj-20240127/image/content/e8d93872483a48c7a4eaa48f70211ab1.png",  
496 - "shareSummary": "人民日报,有品质的新闻",  
497 - "shareTitle": "“大学也有家长群",  
498 - "shareUrl": "https://pd-people-sit.pdnews.cn/column/30000723442-500000031275"  
499 - },  
500 - "targetId": "30000723442",  
501 - "targetRelId": "500000031275",  
502 - "targetRelObjectId": "2002",  
503 - "targetRelType": 1,  
504 - "targetStatus": 0,  
505 - "targetTitle": "“大学也有家长群",  
506 - "targetType": 8,  
507 - "topicType": null,  
508 - "uuid": "766a6bac-aa1d-4e88-a798-f19bade201ee"  
509 - }  
510 - ],  
511 - "pageNum": 1,  
512 - "pageSize": 20,  
513 - "totalCommentNum": 12,  
514 - "totalCount": 12  
515 - },  
516 - "message": "Success",  
517 - "meta": null,  
518 - "requestId": "",  
519 - "success": true,  
520 - "timestamp": 1711440876958  
521 -}  
1 -{  
2 - "code": "0",  
3 - "data": [  
4 - {  
5 - "commentId": 403445,  
6 - "status": 1  
7 - },  
8 - {  
9 - "commentId": 303318,  
10 - "status": 0  
11 - },  
12 - {  
13 - "commentId": 303317,  
14 - "status": 0  
15 - },  
16 - {  
17 - "commentId": 403426,  
18 - "status": 1  
19 - },  
20 - {  
21 - "commentId": 403425,  
22 - "status": 0  
23 - },  
24 - {  
25 - "commentId": 403422,  
26 - "status": 0  
27 - },  
28 - {  
29 - "commentId": 303306,  
30 - "status": 0  
31 - },  
32 - {  
33 - "commentId": 403420,  
34 - "status": 0  
35 - },  
36 - {  
37 - "commentId": 403417,  
38 - "status": 0  
39 - },  
40 - {  
41 - "commentId": 303305,  
42 - "status": 0  
43 - },  
44 - {  
45 - "commentId": 303304,  
46 - "status": 0  
47 - },  
48 - {  
49 - "commentId": 303302,  
50 - "status": 0  
51 - }  
52 - ],  
53 - "message": "Success",  
54 - "meta": null,  
55 - "requestId": "",  
56 - "success": true,  
57 - "timestamp": 1711440877105  
58 -}  
1 -{  
2 - "code": "0",  
3 - "data": {  
4 - "articleCreation": 0,  
5 - "attentionNum": 1,  
6 - "authIcon": "",  
7 - "authId": 0,  
8 - "authPersonal": "",  
9 - "authTitle": "",  
10 - "avatarFrame": "",  
11 - "banControl": 0,  
12 - "browseNum": 76,  
13 - "categoryAuth": "",  
14 - "city": "",  
15 - "cnContentPublish": 0,  
16 - "cnIsComment": 0,  
17 - "cnIsLike": 0,  
18 - "cnLiveCommentControl": 0,  
19 - "cnLiveGiftControl": 0,  
20 - "cnLiveLikeControl": 0,  
21 - "cnLivePublish": 0,  
22 - "cnLiveShareControl": 0,  
23 - "cnShareControl": 0,  
24 - "contentPublish": 0,  
25 - "creatorId": "",  
26 - "district": "",  
27 - "dynamicControl": 0,  
28 - "dynamicCreation": 0,  
29 - "fansNum": 0,  
30 - "headPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/null20240127/1630371072/1706336907262.jpg",  
31 - "honoraryIcon": "",  
32 - "honoraryTitle": "",  
33 - "introduction": "",  
34 - "isAttention": 0,  
35 - "isComment": 0,  
36 - "isLike": 0,  
37 - "liveCommentControl": 0,  
38 - "liveGiftControl": 0,  
39 - "liveLikeControl": 0,  
40 - "livePublish": 0,  
41 - "liveShareControl": 0,  
42 - "liveSwitch": 0,  
43 - "mainControl": 1,  
44 - "originUserId": "",  
45 - "pictureCollectionCreation": 0,  
46 - "posterShareControl": 1,  
47 - "province": "",  
48 - "region": "安徽省",  
49 - "registTime": 1703485580000,  
50 - "shareControl": 0,  
51 - "shareUrl": "",  
52 - "subjectType": 0,  
53 - "userId": "512157124138245",  
54 - "userName": "树下🍑 1122334",  
55 - "userType": "1",  
56 - "videoCollectionCreation": 0,  
57 - "videoCreation": 0  
58 - },  
59 - "message": "Success",  
60 - "meta": null,  
61 - "requestId": "",  
62 - "success": true,  
63 - "timestamp": 1711440875633  
64 -}  
1 -{  
2 - "code": "0",  
3 - "data": [  
4 - {  
5 - "level": 2,  
6 - "levelHead": "http://rmrb-video-content-sit.oss-cn-beijing.aliyuncs.com/sjbj-20240125/image/display/88c45bf56ac941b883c69bd8ed373164.png",  
7 - "userId": 512157124138245  
8 - }  
9 - ],  
10 - "message": "Success",  
11 - "success": true,  
12 - "timestamp": 1711440876088  
13 -}  
1 -{  
2 - "code": "0",  
3 - "data": {  
4 - "hasNext": 0,  
5 - "list": [  
6 - {  
7 - "attentionCreatorId": "3259284",  
8 - "attentionHeadPhotoUrl": "https://sitcontentjdcdn.aikan.pdnews.cn/vod/content/202401/20240127161739536/eUj.png?x-oss-process=image/resize,l_400/auto-orient,1/quality,q_90/format,jpg",  
9 - "attentionNum": 0,  
10 - "attentionUserId": "535571576006021",  
11 - "attentionUserName": "斯特的7778",  
12 - "attentionUserType": 2,  
13 - "authIcon": "",  
14 - "authId": 0,  
15 - "authPersional": "",  
16 - "authTitle": "",  
17 - "banControl": 0,  
18 - "categoryAuth": "",  
19 - "cnLiveCommentControl": 1,  
20 - "cnLiveGiftControl": 1,  
21 - "cnLiveLikeControl": 1,  
22 - "cnLiveShareControl": 1,  
23 - "cnShareControl": 1,  
24 - "collectNum": 1,  
25 - "commentNum": 0,  
26 - "createTime": 1706344099000,  
27 - "fansNum": 1,  
28 - "honoraryIcon": "",  
29 - "honoraryTitle": "",  
30 - "id": 100703,  
31 - "introduction": "暗黑世界顶级",  
32 - "isAttention": 0,  
33 - "isComment": 1,  
34 - "isLike": 1,  
35 - "isVisiable": 1,  
36 - "likeNum": 0,  
37 - "liveCommentControl": 1,  
38 - "liveGiftControl": 1,  
39 - "liveLikeControl": 1,  
40 - "liveShareControl": 1,  
41 - "mainControl": 1,  
42 - "posterShareControl": 0,  
43 - "registTime": 1706343790000,  
44 - "shareControl": 1,  
45 - "shareNum": 7,  
46 - "status": 1,  
47 - "subjectType": null,  
48 - "updateTime": 1706344099000,  
49 - "userId": "512157124138245",  
50 - "userType": 1  
51 - }  
52 - ],  
53 - "pageNum": 1,  
54 - "pageSize": 20,  
55 - "totalCount": 1  
56 - },  
57 - "message": "Success",  
58 - "meta": null,  
59 - "requestId": "",  
60 - "success": true,  
61 - "timestamp": 1711441048304  
62 -}  
1 -{  
2 - "code": "0",  
3 - "data": [  
4 - "习语",  
5 - "党史学习",  
6 - "高考倒计时"  
7 - ],  
8 - "message": "Success",  
9 - "success": true,  
10 - "timestamp": 1712562841885  
11 -}  
1 -{  
2 - "code": "0",  
3 - "data": [  
4 - {  
5 - "hotEntry": "习语",  
6 - "mark": 1,  
7 - "sequence": 1  
8 - },  
9 - {  
10 - "hotEntry": "党史学习教育工作",  
11 - "mark": 1,  
12 - "sequence": 2  
13 - },  
14 - {  
15 - "hotEntry": "2024年全国两会新闻中心启用",  
16 - "mark": 1,  
17 - "sequence": 3  
18 - },  
19 - {  
20 - "hotEntry": "第二艘国产大型邮轮后年底交付",  
21 - "mark": 0,  
22 - "sequence": 4  
23 - },  
24 - {  
25 - "hotEntry": "268名跨境电诈犯罪嫌疑人移交",  
26 - "mark": 0,  
27 - "sequence": 5  
28 - },  
29 - {  
30 - "hotEntry": "高考倒计时100天",  
31 - "mark": 2,  
32 - "sequence": 6  
33 - },  
34 - {  
35 - "hotEntry": "日本开始第四轮核污染水排放",  
36 - "mark": 0,  
37 - "sequence": 7  
38 - },  
39 - {  
40 - "hotEntry": "国台办点名管碧玲",  
41 - "mark": 0,  
42 - "sequence": 8  
43 - },  
44 - {  
45 - "hotEntry": "美方称不会向乌克兰派兵",  
46 - "mark": 2,  
47 - "sequence": 9  
48 - },  
49 - {  
50 - "hotEntry": "电动车乱停乱充电",  
51 - "mark": 2,  
52 - "sequence": 10  
53 - }  
54 - ],  
55 - "message": "Success",  
56 - "success": true,  
57 - "timestamp": 1712631086296  
58 -}  
1 -{  
2 - "code": "0",  
3 - "data": [  
4 - "你们到底喜欢什么颜色的包包?说红色难搭配黑色没特点绿色又觉得",  
5 - "你们太帅了!货车起火6辆车紧急停下帮忙",  
6 - "你们家的除螨仪真的能除螨吗?听听专业人士怎么说",  
7 - "你们辛苦了!85岁 老奶奶亲手缝300双鞋垫送消防员",  
8 - "你们都是最棒的!中国队88枚奖牌收官",  
9 - "你们平安我们放心!广西玉林地震,中学生操场避险集体大合唱",  
10 - "你们也要保护好自己!男孩花掉多年攒的压岁钱,买口罩送民警",  
11 - "你们“灰头土脸”的样子,真帅!",  
12 - "你们的样子真美!路遇老人身体不适 五名女大学生护送就医",  
13 - "你们都在看Mate 30,我却被老干妈洗脑了:这广告比华为还"  
14 -  
15 - ],  
16 - "message": "Success",  
17 - "success": true,  
18 - "timestamp": 1712803812695  
19 -}  
1 -{  
2 - "code": "0",  
3 - "data": {  
4 - "activityTotal": 0,  
5 - "allTotal": 2791778,  
6 - "cmsTotal": 240407,  
7 - "keyword": "大家",  
8 - "pageNum": 1,  
9 - "pageSize": 1,  
10 - "rmhTotal": 2551290,  
11 - "totalCount": 0,  
12 - "trueTotal": 0,  
13 - "videoTotal": 16775  
14 - },  
15 - "message": "Success",  
16 - "success": true,  
17 - "timestamp": 1712889165817  
18 -}  
1 -{  
2 - "code": "0",  
3 - "data": [  
4 - {  
5 - "collectNum": 1,  
6 - "commentNum": 1,  
7 - "contentId": "30044118767",  
8 - "contentType": 8,  
9 - "likeNum": 20,  
10 - "readNum": 7839,  
11 - "shareNum": 1  
12 - },  
13 - {  
14 - "collectNum": 0,  
15 - "commentNum": 0,  
16 - "contentId": "30043914123",  
17 - "contentType": 8,  
18 - "likeNum": 20,  
19 - "readNum": 4986,  
20 - "shareNum": 2  
21 - },  
22 - {  
23 - "collectNum": 0,  
24 - "commentNum": 0,  
25 - "contentId": "30044329241",  
26 - "contentType": 8,  
27 - "likeNum": 0,  
28 - "readNum": 416,  
29 - "shareNum": 0  
30 - },  
31 - {  
32 - "collectNum": 0,  
33 - "commentNum": 2,  
34 - "contentId": "30044323528",  
35 - "contentType": 8,  
36 - "likeNum": 3,  
37 - "readNum": 1139,  
38 - "shareNum": 4  
39 - },  
40 - {  
41 - "collectNum": 0,  
42 - "commentNum": 0,  
43 - "contentId": "30044318896",  
44 - "contentType": 8,  
45 - "likeNum": 0,  
46 - "readNum": 1266,  
47 - "shareNum": 1  
48 - },  
49 - {  
50 - "collectNum": 11,  
51 - "commentNum": 13,  
52 - "contentId": "30044318735",  
53 - "contentType": 8,  
54 - "likeNum": 12,  
55 - "readNum": 3842,  
56 - "shareNum": 0  
57 - },  
58 - {  
59 - "collectNum": 0,  
60 - "commentNum": 0,  
61 - "contentId": "30044303875",  
62 - "contentType": 8,  
63 - "likeNum": 0,  
64 - "readNum": 2689,  
65 - "shareNum": 0  
66 - },  
67 - {  
68 - "collectNum": 0,  
69 - "commentNum": 0,  
70 - "contentId": "30044210715",  
71 - "contentType": 8,  
72 - "likeNum": 0,  
73 - "readNum": 173,  
74 - "shareNum": 0  
75 - },  
76 - {  
77 - "collectNum": 0,  
78 - "commentNum": 0,  
79 - "contentId": "30002401426",  
80 - "contentType": 8,  
81 - "likeNum": 0,  
82 - "readNum": 9002,  
83 - "shareNum": 1  
84 - },  
85 - {  
86 - "collectNum": 0,  
87 - "commentNum": 0,  
88 - "contentId": "30044297214",  
89 - "contentType": 8,  
90 - "likeNum": 20,  
91 - "readNum": 3079,  
92 - "shareNum": 6  
93 - },  
94 - {  
95 - "collectNum": 0,  
96 - "commentNum": 0,  
97 - "contentId": "30002735426",  
98 - "contentType": 8,  
99 - "likeNum": 0,  
100 - "readNum": 3816,  
101 - "shareNum": 0  
102 - },  
103 - {  
104 - "collectNum": 5,  
105 - "commentNum": 1,  
106 - "contentId": "30002891779",  
107 - "contentType": 8,  
108 - "likeNum": 2,  
109 - "readNum": 30474,  
110 - "shareNum": 4  
111 - },  
112 - {  
113 - "collectNum": 0,  
114 - "commentNum": 4,  
115 - "contentId": "30044242849",  
116 - "contentType": 8,  
117 - "likeNum": 4,  
118 - "readNum": 1099,  
119 - "shareNum": 4  
120 - },  
121 - {  
122 - "collectNum": 0,  
123 - "commentNum": 0,  
124 - "contentId": "30044064967",  
125 - "contentType": 8,  
126 - "likeNum": 9,  
127 - "readNum": 63139,  
128 - "shareNum": 5  
129 - },  
130 - {  
131 - "collectNum": 0,  
132 - "commentNum": 0,  
133 - "contentId": "30044214313",  
134 - "contentType": 8,  
135 - "likeNum": 1,  
136 - "readNum": 5966,  
137 - "shareNum": 1  
138 - },  
139 - {  
140 - "collectNum": 0,  
141 - "commentNum": 0,  
142 - "contentId": "30044174144",  
143 - "contentType": 8,  
144 - "likeNum": 20,  
145 - "readNum": 5150,  
146 - "shareNum": 0  
147 - },  
148 - {  
149 - "collectNum": 0,  
150 - "commentNum": 0,  
151 - "contentId": "30044036728",  
152 - "contentType": 8,  
153 - "likeNum": 20,  
154 - "readNum": 4217,  
155 - "shareNum": 0  
156 - },  
157 - {  
158 - "collectNum": 3,  
159 - "commentNum": 0,  
160 - "contentId": "30044123091",  
161 - "contentType": 8,  
162 - "likeNum": 20,  
163 - "readNum": 16697,  
164 - "shareNum": 0  
165 - },  
166 - {  
167 - "collectNum": 0,  
168 - "commentNum": 0,  
169 - "contentId": "30044055254",  
170 - "contentType": 8,  
171 - "likeNum": 20,  
172 - "readNum": 11551,  
173 - "shareNum": 0  
174 - },  
175 - {  
176 - "collectNum": 0,  
177 - "commentNum": 0,  
178 - "contentId": "30043994115",  
179 - "contentType": 8,  
180 - "likeNum": 0,  
181 - "readNum": 2370,  
182 - "shareNum": 3  
183 - }  
184 - ],  
185 - "message": "Success",  
186 - "meta": null,  
187 - "requestId": "",  
188 - "success": true,  
189 - "timestamp": 1712889166521  
190 -}