|
@@ -1,23 +1,20 @@
|
|
|
package com.ruoyi.sim.controller;
|
|
|
|
|
|
import java.util.List;
|
|
|
-import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
+import com.ruoyi.common.core.domain.entity.SysRole;
|
|
|
+import com.ruoyi.common.utils.SecurityUtils;
|
|
|
import com.ruoyi.sim.service.impl.AddOnUserService;
|
|
|
-import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import com.ruoyi.system.service.ISysRoleService;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
-import org.springframework.web.bind.annotation.PutMapping;
|
|
|
-import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
-import org.springframework.web.bind.annotation.PathVariable;
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
import com.ruoyi.common.annotation.Log;
|
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
|
import com.ruoyi.sim.domain.AddOnUser;
|
|
|
-import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
|
|
/**
|
|
@@ -26,16 +23,18 @@ import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
* @author tom
|
|
|
* @date 2024-12-11
|
|
|
*/
|
|
|
-// @RestController
|
|
|
-// @RequestMapping("/sim/add_on_user")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/sim/add-on-user")
|
|
|
+@Api("用户附加Controller")
|
|
|
public class AddOnUserController extends BaseController {
|
|
|
@Autowired
|
|
|
private AddOnUserService addOnUserService;
|
|
|
+ @Autowired
|
|
|
+ private ISysRoleService roleService;
|
|
|
|
|
|
/**
|
|
|
* 查询用户附加列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('sim:add_on_user:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(AddOnUser addOnUser) {
|
|
|
startPage();
|
|
@@ -44,21 +43,8 @@ public class AddOnUserController extends BaseController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 导出用户附加列表
|
|
|
- */
|
|
|
- @PreAuthorize("@ss.hasPermi('sim:add_on_user:export')")
|
|
|
- @Log(title = "用户附加", businessType = BusinessType.EXPORT)
|
|
|
- @PostMapping("/export")
|
|
|
- public void export(HttpServletResponse response, AddOnUser addOnUser) {
|
|
|
- List<AddOnUser> list = addOnUserService.selectAddOnUserList(addOnUser);
|
|
|
- ExcelUtil<AddOnUser> util = new ExcelUtil<AddOnUser>(AddOnUser.class);
|
|
|
- util.exportExcel(response, list, "用户附加数据");
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
* 获取用户附加详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('sim:add_on_user:query')")
|
|
|
@GetMapping(value = "/{userId}")
|
|
|
public AjaxResult getInfo(@PathVariable("userId") Long userId) {
|
|
|
return success(addOnUserService.selectAddOnUserByUserId(userId));
|
|
@@ -67,7 +53,6 @@ public class AddOnUserController extends BaseController {
|
|
|
/**
|
|
|
* 新增用户附加
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('sim:add_on_user:add')")
|
|
|
@Log(title = "用户附加", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody AddOnUser addOnUser) {
|
|
@@ -77,7 +62,6 @@ public class AddOnUserController extends BaseController {
|
|
|
/**
|
|
|
* 修改用户附加
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('sim:add_on_user:edit')")
|
|
|
@Log(title = "用户附加", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody AddOnUser addOnUser) {
|
|
@@ -87,10 +71,24 @@ public class AddOnUserController extends BaseController {
|
|
|
/**
|
|
|
* 删除用户附加
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('sim:add_on_user:remove')")
|
|
|
@Log(title = "用户附加", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{userIds}")
|
|
|
public AjaxResult remove(@PathVariable Long[] userIds) {
|
|
|
return toAjax(addOnUserService.deleteAddOnUserByUserIds(userIds));
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 返回当前登录账号角色info。
|
|
|
+ */
|
|
|
+ @GetMapping(value = "/roleInfo/")
|
|
|
+ @ApiOperation("返回当前登录账号角色info")
|
|
|
+ public AjaxResult getRole() {
|
|
|
+ Long userId = SecurityUtils.getUserId();
|
|
|
+ SysRole role = null;
|
|
|
+ List<Long> roleList = roleService.selectRoleListByUserId(userId);
|
|
|
+ if (roleList != null && !roleList.isEmpty()) {
|
|
|
+ role = roleService.selectRoleById(roleList.get(0));
|
|
|
+ }
|
|
|
+ return success(role);
|
|
|
+ }
|
|
|
}
|