修改pom
parent
628b695fc6
commit
9dd2a9a69f
2
pom.xml
2
pom.xml
|
@ -12,7 +12,7 @@
|
||||||
<artifactId>four-modules-system</artifactId>
|
<artifactId>four-modules-system</artifactId>
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
four-modules-system系统
|
four-modules-system系统服务
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
|
@ -52,6 +52,7 @@ public class SysConfigController extends BaseController
|
||||||
@PostMapping("/export")
|
@PostMapping("/export")
|
||||||
public void export(HttpServletResponse response, SysConfig config)
|
public void export(HttpServletResponse response, SysConfig config)
|
||||||
{
|
{
|
||||||
|
|
||||||
List<SysConfig> list = configService.selectConfigList(config);
|
List<SysConfig> list = configService.selectConfigList(config);
|
||||||
ExcelUtil<SysConfig> util = new ExcelUtil<SysConfig>(SysConfig.class);
|
ExcelUtil<SysConfig> util = new ExcelUtil<SysConfig>(SysConfig.class);
|
||||||
util.exportExcel(response, list, "参数数据");
|
util.exportExcel(response, list, "参数数据");
|
||||||
|
|
|
@ -79,7 +79,7 @@ public class SysUserController extends BaseController
|
||||||
}
|
}
|
||||||
|
|
||||||
@Log(title = "用户管理", businessType = BusinessType.EXPORT)
|
@Log(title = "用户管理", businessType = BusinessType.EXPORT)
|
||||||
@RequiresPermissions("system:user:export")
|
@RequiresPermissions({"system:user:export","",""})
|
||||||
@PostMapping("/export")
|
@PostMapping("/export")
|
||||||
public void export(HttpServletResponse response, SysUser user)
|
public void export(HttpServletResponse response, SysUser user)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue