文档
测试

📣 主题点赞后查询数据

POST
http://121.40.197.60:8001/wx/topics/afterLikeFind

接口描述

用户对首页主题浏览后必须调用接口

请求参数

参数名
类型
描述
必填
LikeAgainstDTO
JSONObject
传入下面说明中的JSON
必填

接口文档

**LikeAgainstDTO实体类字段含义,** |**字段名**|用意| |-|-|-| |id|主题id,从首页列表获取| |useCode| 用户code| |operateType|int类型,1、赞同 2、反对 3、已读未操作| |pageDTO|分页体| **传入格式:** ```JSON { "id": 11, "operateType": 1, "pageDTO": { "pageNum": 1, "pageSize": 10 }, "userCode": "db1d46eb-3c10-4fbb-b143-cc5b53225d91" } ``` **点赞后返回体:** ```JSON { "code": 200, "data": { "topics": { "id": 11, "code": "602fc8dc-0049-4a57-b3e1-5c903c4feaf0", "primaryCode": "dad5f1d6-09cd-441a-8329-3e93324731d1", "labelCodeArray": "200423e0-cbb2-4ef0-a12d-3307840d3d5f,e1593d31-cc88-4f98-a27f-5cda6bba9020", "useStatus": false, "content": "大猪蹄子人", "numberOfApprovals": 18, "oppositionNumber": 2, "topicComment": { "trHoleID": "23", "userName": "北风", "avatarUrl": "https://pic3.zhimg.com/80/v2-e033acbeacba3cd43e4874b1fa34afc8_1440w.jpg?source=1940ef5c", "content": "刘思聪都是大猪蹄子", "commentsCount": "679" }, "create_TIME": null, "modify_TIME": null }, "topicsIPage": { "records": [ { "id": 15, "code": "79800f87-8006-4b2a-8743-61a7c1fefd8b", "primaryCode": "2af7a995-1134-4a8e-871f-b14efc87e50b", "labelCodeArray": null, "useStatus": false, "content": "111", "numberOfApprovals": 33, "oppositionNumber": null, "topicComment": null, "create_TIME": null, "modify_TIME": null } ], "total": 1, "size": 10, "current": 1, "orders": [], "optimizeCountSql": true, "hitCount": false, "countId": null, "maxLimit": null, "searchCount": true, "pages": 1 } } } ``` **反对返回体** ```json { "code": 200, "data": { "topics": null, "topicsIPage": { "records": [ { "id": 15, "code": "79800f87-8006-4b2a-8743-61a7c1fefd8b", "primaryCode": "2af7a995-1134-4a8e-871f-b14efc87e50b", "labelCodeArray": null, "useStatus": false, "content": "111", "numberOfApprovals": 33, "oppositionNumber": null, "topicComment": null, "create_TIME": null, "modify_TIME": null }, { "id": 12, "code": "89746e5d-b86b-4f35-9f15-35da98693965", "primaryCode": "dad5f1d6-09cd-441a-8329-3e93324731d1", "labelCodeArray": null, "useStatus": false, "content": "应该是先有钱", "numberOfApprovals": 1, "oppositionNumber": null, "topicComment": null, "create_TIME": null, "modify_TIME": null } ], "total": 2, "size": 10, "current": 1, "orders": [], "optimizeCountSql": true, "hitCount": false, "countId": null, "maxLimit": null, "searchCount": true, "pages": 1 } } } ```