Compare commits

..

No commits in common. "2a315cbbe678cac9982564c7da71c2988c697121" and "e3bb49b72d3ec3cba298f6d105f190d78108dcb9" have entirely different histories.

1 changed files with 0 additions and 3 deletions

View File

@ -51,9 +51,6 @@ 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);
}