| | |
| | | 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.entity.show.OneMapEntity; |
| | | import com.lf.server.service.show.OneMapService; |
| | | import io.swagger.annotations.Api; |
| | |
| | | public ResponseMsg<Object> countProjectDisplay() { |
| | | List<String> resList = aMapOfPipelineService.countProjectDisplay(); |
| | | return success(resList); |
| | | } |
| | | |
| | | /** |
| | | * 项目工程巡视 |
| | | * Project inspection tour |
| | | */ |
| | | @SysLog() |
| | | @ApiOperation(value = "项目工程巡视") |
| | | @GetMapping("/countProjectTour") |
| | | public ResponseMsg<Object> countProjectTour(MpipelineEntity mpipelineEntity) { |
| | | List<String> resList = aMapOfPipelineService.countProjectTour(mpipelineEntity); |
| | | return success("hello! 您已经成功访问-项目工程巡视", resList); |
| | | } |
| | | |
| | | /** |