Compare commits

..

No commits in common. "5a88fb6847ff273c56bc244df81e7164dbe3b04c" and "3d496eebfff3037f0223b41914b658566698412c" 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);
}