123456789101112131415161718192021222324252627282930313233343536 |
- 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.*;
- /**
- * <p>
- * 前端控制器
- * </p>
- *
- * @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));
- }
-
- }
|