|
|
|
|
@ -52,7 +52,7 @@ public class SysFiringInfoController extends BaseController
|
|
|
|
|
* 导出登录信息列表
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:firing:export")
|
|
|
|
|
@Log(title = "登录信息", businessType = BusinessType.EXPORT)
|
|
|
|
|
@Log(title = "登录页面信息", businessType = BusinessType.EXPORT)
|
|
|
|
|
@PostMapping("/export")
|
|
|
|
|
public void export(HttpServletResponse response, SysFiringInfo sysFiringInfo)
|
|
|
|
|
{
|
|
|
|
|
@ -75,7 +75,7 @@ public class SysFiringInfoController extends BaseController
|
|
|
|
|
* 新增登录信息
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:firing:add")
|
|
|
|
|
@Log(title = "登录信息", businessType = BusinessType.INSERT)
|
|
|
|
|
@Log(title = "新增登录页面信息", businessType = BusinessType.INSERT)
|
|
|
|
|
@PostMapping
|
|
|
|
|
public AjaxResult add(@RequestBody SysFiringInfo sysFiringInfo)
|
|
|
|
|
{
|
|
|
|
|
@ -86,7 +86,7 @@ public class SysFiringInfoController extends BaseController
|
|
|
|
|
* 修改登录信息
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:firing:edit")
|
|
|
|
|
@Log(title = "登录信息", businessType = BusinessType.UPDATE)
|
|
|
|
|
@Log(title = "修改登录页面信息", businessType = BusinessType.UPDATE)
|
|
|
|
|
@PutMapping
|
|
|
|
|
public AjaxResult edit(@RequestBody SysFiringInfo sysFiringInfo)
|
|
|
|
|
{
|
|
|
|
|
@ -97,7 +97,7 @@ public class SysFiringInfoController extends BaseController
|
|
|
|
|
* 删除登录信息
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:firing:remove")
|
|
|
|
|
@Log(title = "登录信息", businessType = BusinessType.DELETE)
|
|
|
|
|
@Log(title = "删除登录页面信息", businessType = BusinessType.DELETE)
|
|
|
|
|
@DeleteMapping("/{ids}")
|
|
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
|
|
|
|
{
|
|
|
|
|
|