| | |
| | | @ApiOperation(value = "自动上传重点人员和流动人员走访记录") |
| | | @GetMapping("lc/auto/upload/visit_record") |
| | | void automationUploadVisitRecord(); |
| | | |
| | | @ApiOperation(value = "获取所有或者根据姓名和工号查询,分页") |
| | | @GetMapping("lc/event/getGridMemberListByAreaIdOrName") |
| | | R getGridMemberListByAreaIdOrName(@RequestParam("areaId") String areaId,@RequestParam("param") String param,@RequestParam("pageNum") Long pageNum,@RequestParam("pageSize") Long pageSize); |
| | | |
| | | @ApiOperation(value = "获取指定区域网格树形列表,不包括具体的网格数据") |
| | | @GetMapping("lc/grid/tree") |
| | | R getGridTreeByAreaId(@RequestParam("areaId") String areaId); |
| | | |
| | | @ApiOperation(value = "获取指定区域网格列表") |
| | | @GetMapping("lc/grid/list") |
| | | R getGridDataListByAreaId(@RequestParam("areaId") String areaId); |
| | | } |