Merge branch 'master' into docker_package
This commit is contained in:
commit
2a315cbbe6
|
@ -51,6 +51,9 @@ public class FuseController {
|
|||
@ApiImplicitParam(name = "district", value = "赋能场景类型", paramType = "query", dataType = "int")
|
||||
})
|
||||
public Result<PageData<TbFuseDTO>> page(@ApiIgnore @RequestParam Map<String, Object> params) {
|
||||
if (params.containsKey("orderType")) {
|
||||
params.put("order", params.get("orderType"));
|
||||
}
|
||||
PageData<TbFuseDTO> page = tbFuseService.page(params);
|
||||
return new Result<PageData<TbFuseDTO>>().ok(page);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue