| | |
| | | * @param key
|
| | | * @param out
|
| | | */
|
| | | @RequestNoSignValidate()
|
| | | @RequestMapping(value = "query")
|
| | | public void query(String callback, Integer pageIndex, Integer pageSize, String key,
|
| | | PrintWriter out) {
|
| | |
| | | helpCenterService.queryIdAndTitle((pageIndex - 1) * pageSize, pageSize, key);
|
| | |
|
| | | if (helpCenterList == null || helpCenterList.size() == 0) {
|
| | | JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(2,"没有更多了"));
|
| | | JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(2, "没有更多了"));
|
| | | return;
|
| | | }
|
| | |
|
| | |
| | | * @param id
|
| | | * @param out
|
| | | */
|
| | | @RequestNoSignValidate()
|
| | | @RequestMapping(value = "getInfo")
|
| | | public void getInfo(String callback, Long id, PrintWriter out){
|
| | | try {
|