zhaowenxuan
2024-07-26 ff7f564dc6c43384857a80246f72575a40e86cde
ltkj-admin/src/main/java/com/ltkj/web/controller/system/DictUserInfoController.java
@@ -34,7 +34,7 @@
    /**
     * 获取用户信息详情详细信息
     */
    @PreAuthorize("@ss.hasPermi('hosp:Userinfo:getInfoList')")
//    @PreAuthorize("@ss.hasPermi('hosp:Userinfo:getInfoList')")
    @GetMapping(value = "/list")
    @ApiOperation("查询详情信息")
    public AjaxResult getInfoList(@RequestParam(defaultValue = "1") Integer pageNum, @RequestParam(defaultValue = "10") Integer pageSize) {
@@ -48,7 +48,7 @@
    /**
     * 获取用户信息详情详细信息
     */
    @PreAuthorize("@ss.hasPermi('hosp:Userinfo:query')")
//    @PreAuthorize("@ss.hasPermi('hosp:Userinfo:query')")
    @GetMapping("/{id}")
    @ApiOperation("根据用户id查询详情信息")
    public AjaxResult getInfo(@PathVariable("id") @ApiParam(value = "用户id") Long userId) {
@@ -64,7 +64,7 @@
    /**
     * 新增用户信息详情
     */
    @PreAuthorize("@ss.hasPermi('hosp:Userinfo:add')")
//    @PreAuthorize("@ss.hasPermi('hosp:Userinfo:add')")
    @Log(title = "用户信息详情", businessType = BusinessType.INSERT)
    @PostMapping
    //@ApiOperation("完善用户信息")
@@ -75,7 +75,7 @@
    /**
     * 修改用户信息详情
     */
    @PreAuthorize("@ss.hasPermi('hosp:Userinfo:edit')")
//    @PreAuthorize("@ss.hasPermi('hosp:Userinfo:edit')")
    @Log(title = "用户信息详情", businessType = BusinessType.UPDATE)
    @PutMapping
    @ApiOperation("修改用户信息")