package com.fdkankan.manage_jp.controller; import com.fdkankan.manage_jp.common.Result; import com.fdkankan.manage_jp.entity.Project; import com.fdkankan.manage_jp.service.IProjectSceneGpsService; import com.fdkankan.manage_jp.service.IProjectService; import com.fdkankan.manage_jp.vo.request.ProjectParam; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; /** *
* 前端控制器 *
* * @author * @since 2024-08-14 */ @RestController @RequestMapping("/manage_jp/api/projectScene") public class ProjectSceneController extends BaseController{ @Autowired IProjectSceneGpsService projectSceneGpsService; @PostMapping("/allSceneGps") public Result list(@RequestBody ProjectParam param){ return Result.success(projectSceneGpsService.allSceneGps(param)); } }