查询全部摄像头接口优化

This commit is contained in:
wuweida 2022-05-12 10:58:33 +08:00
parent bac2105efb
commit 442ac20d3c
1 changed files with 2 additions and 7 deletions

View File

@ -113,14 +113,9 @@ public class Controller {
* @return * @return
*/ */
@RequestMapping("selectAll") @RequestMapping("selectAll")
public Result selectAll(){ public String selectAll(){
//System.out.println("selectAll start->"+System.currentTimeMillis()); return cameraChannelService.selectAll();
String listStr = cameraChannelService.selectAll();
//System.out.println("selectAll end->"+System.currentTimeMillis());
Result success = Result.success(listStr);
return success;
} }