Merge branch 'develop_1' into 'develop_master'
update:修改路径 See merge request !11
This commit is contained in:
+17
-1
@@ -36,6 +36,15 @@ public class SarStandProjectLibraryController extends BaseController<SarStandPro
|
||||
@Resource
|
||||
private SarStandProjectLibraryServiceImpl sarStandProjectLibraryService;
|
||||
|
||||
/**
|
||||
*
|
||||
* @param Page
|
||||
* @param PageSize
|
||||
* @param sarDto
|
||||
* @return
|
||||
* @author zj
|
||||
* date 2021-06-22
|
||||
**/
|
||||
@GetMapping("/queryProject")
|
||||
@ApiOperation("车型/项目库")
|
||||
public ResponseMessage queryMaintenanceProject(@RequestParam(defaultValue = "1", value = "Page")int Page, @RequestParam(defaultValue = "10", value = "PageSize") int PageSize,
|
||||
@@ -47,7 +56,14 @@ public class SarStandProjectLibraryController extends BaseController<SarStandPro
|
||||
map.put("notMaintenance",notMaintenanceList);
|
||||
return Result.success("200",map);
|
||||
}
|
||||
@GetMapping("/api/queryById")
|
||||
/**
|
||||
*
|
||||
* @param id
|
||||
* @return
|
||||
* @author zj
|
||||
* date 2021-06-22
|
||||
**/
|
||||
@GetMapping("/queryById")
|
||||
@ApiOperation("点击项目id查询")
|
||||
public ResponseMessage queryByName(String id){
|
||||
List<SarStandProjectLibrary> list = sarStandProjectLibraryService.queryById(id);
|
||||
|
||||
Reference in New Issue
Block a user