完善维护列表
parent
133f358c73
commit
4981c74fda
|
@ -41,6 +41,7 @@ public class EngineVersionController extends BaseController {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查看版本列表
|
* 查看版本列表
|
||||||
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@GetMapping("/selectVersionList")
|
@GetMapping("/selectVersionList")
|
||||||
|
@ -52,6 +53,7 @@ public class EngineVersionController extends BaseController {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 添加版本信息
|
* 添加版本信息
|
||||||
|
*
|
||||||
* @param engineVersion
|
* @param engineVersion
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
@ -64,6 +66,7 @@ public class EngineVersionController extends BaseController {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改版本信息
|
* 修改版本信息
|
||||||
|
*
|
||||||
* @param engineVersion
|
* @param engineVersion
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
@ -76,6 +79,7 @@ public class EngineVersionController extends BaseController {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除版本信息
|
* 删除版本信息
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
@ -89,6 +93,7 @@ public class EngineVersionController extends BaseController {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询版本信息
|
* 查询版本信息
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
@ -150,11 +155,12 @@ public class EngineVersionController extends BaseController {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询版本列表
|
* 查询版本列表
|
||||||
|
*
|
||||||
* @param id
|
* @param id
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@PostMapping("/selectListById/{id}")
|
@PostMapping("/selectListById/{id}")
|
||||||
public Result selectListById(@PathVariable Long id){
|
public Result selectListById(@PathVariable Long id) {
|
||||||
//使用mybatis-plus 查询
|
//使用mybatis-plus 查询
|
||||||
// return Result.success(engineVersionService.getByIds(id));
|
// return Result.success(engineVersionService.getByIds(id));
|
||||||
return Result.success(engineVersionService.getById(id));
|
return Result.success(engineVersionService.getById(id));
|
||||||
|
|
Loading…
Reference in New Issue