Commit 4064808d by “Kongxiangkun”

投票列表增加分页参数

parent 4e5a0662
...@@ -125,7 +125,7 @@ public class ResearchQuestionsController { ...@@ -125,7 +125,7 @@ public class ResearchQuestionsController {
if (state != 2) { if (state != 2) {
return Response.ok(1); return Response.ok(1);
} }
return Response.ok(researchQuestionClient.listAll(researchId)); return Response.ok(researchQuestionClient.listAll(researchId, null, null));
} catch (Exception e) { } catch (Exception e) {
LOGGER.error("", e); LOGGER.error("", e);
return Response.fail(ReturnCode.SERVICE_UNAVAILABLE.getCode(),ReturnCode.SERVICE_UNAVAILABLE.getMsg()); return Response.fail(ReturnCode.SERVICE_UNAVAILABLE.getCode(),ReturnCode.SERVICE_UNAVAILABLE.getMsg());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment