| | |
| | | import com.lf.server.annotation.SysLog; |
| | | import com.lf.server.controller.all.BaseController; |
| | | import com.lf.server.entity.all.ResponseMsg; |
| | | import com.lf.server.entity.bs.MpipelineEntity; |
| | | import com.lf.server.service.show.OneMapService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | OneMapService aMapOfPipelineService; |
| | | |
| | | |
| | | |
| | | //============[项目统计 project Statistics]================== |
| | | |
| | | /** |
| | | * 项目类别 |
| | | * Project category |
| | |
| | | @SysLog() |
| | | @ApiOperation(value = "项目工程巡视") |
| | | @GetMapping("/countProjectTour") |
| | | public ResponseMsg<Object> countProjectTour() { |
| | | return success("hello! 您已经成功访问-项目工程巡视"); |
| | | public ResponseMsg<Object> countProjectTour(MpipelineEntity mpipelineEntity) { |
| | | List<String> resList = aMapOfPipelineService.countProjectTour(mpipelineEntity); |
| | | return success("hello! 您已经成功访问-项目工程巡视", resList); |
| | | } |
| | | |
| | | /** |
| | | * 项目工程巡视列表 |
| | | * Project inspection tour |
| | | */ |
| | | @SysLog() |
| | | @ApiOperation(value = "项目工程巡视列表") |
| | | @GetMapping("/selectProjectTour") |
| | | public ResponseMsg<Object> selectProjectTour() { |
| | | List<String> resList = aMapOfPipelineService.selectProjectTour(); |
| | | return success(resList); |
| | | } |
| | | |
| | | |