|
|
@@ -95,13 +95,25 @@ public class SysSystemController {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping("/sysList")
|
|
|
- @Operation(summary = "租户列表")
|
|
|
+ @Operation(summary = "租户列表分页")
|
|
|
public HttpResult sysList(@RequestBody SysSystemParam param){
|
|
|
Page page = param.getPage();
|
|
|
Page<SysSystemVo> result = sysSystemService.queryPage(page,param);
|
|
|
return HttpResult.ok(result);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 租户列表
|
|
|
+ * @param param
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping("/sysListAll")
|
|
|
+ @Operation(summary = "租户列表")
|
|
|
+ public HttpResult sysListAll(@RequestBody SysSystemParam param){
|
|
|
+ List<SysSystemVo> result = sysSystemService.queryList(param);
|
|
|
+ return HttpResult.ok(result);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 租户信息查询
|
|
|
* @param id
|