|
@@ -49,8 +49,7 @@ public class SysModuleController extends BaseController
|
|
@GetMapping("/list")
|
|
@GetMapping("/list")
|
|
public TableDataInfo list(SysModule sysModule) throws NoSuchFieldException, IllegalAccessException
|
|
public TableDataInfo list(SysModule sysModule) throws NoSuchFieldException, IllegalAccessException
|
|
{
|
|
{
|
|
-// setTenantId(sysModule);
|
|
|
|
-// startPage();
|
|
|
|
|
|
+ startOrderBy();
|
|
List<SysModule> list = sysModuleService.getList(sysModule);
|
|
List<SysModule> list = sysModuleService.getList(sysModule);
|
|
return getDataTable(list);
|
|
return getDataTable(list);
|
|
}
|
|
}
|
|
@@ -60,6 +59,7 @@ public class SysModuleController extends BaseController
|
|
*/
|
|
*/
|
|
@PreAuthorize("@ss.hasPermi('system:module:export')")
|
|
@PreAuthorize("@ss.hasPermi('system:module:export')")
|
|
@Log(title = "模块管理", businessType = BusinessType.EXPORT)
|
|
@Log(title = "模块管理", businessType = BusinessType.EXPORT)
|
|
|
|
+
|
|
@PostMapping("/export")
|
|
@PostMapping("/export")
|
|
public void export(HttpServletResponse response, SysModule sysModule) throws NoSuchFieldException, IllegalAccessException
|
|
public void export(HttpServletResponse response, SysModule sysModule) throws NoSuchFieldException, IllegalAccessException
|
|
{
|
|
{
|