huanghongfa
2020-12-29 37f55403e7573d8c15b6b0f957b7cb1baf6be4ea
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/user/UserService.java
@@ -3,6 +3,7 @@
import com.panzhihua.common.model.vos.LoginUserInfoVO;
import com.panzhihua.common.model.vos.MenuVO;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.SystemmanagementConfigVO;
import com.panzhihua.common.model.vos.user.*;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
@@ -276,11 +277,11 @@
    /**
     * 平台菜单列表
     * @param type 1 运营平台 2 社区平台
     * @param communityId 社区id 0 运营平台
     * @return 菜单集合
     */
    @PostMapping("/role/listmenubackstage")
    R listMenuBackstage(@RequestParam("type")int type);
    R listMenuBackstage(@RequestParam("communityId")Long communityId);
    /**
     * 设置角色的权限
@@ -320,4 +321,20 @@
     */
    @PostMapping("putagreement")
    R putAgreement(@RequestBody SysUserAgreementVO sysUserAgreementVO);
    /**
     * 用户标签
     * @param communityId 社区id
     * @return 标签集合
     */
    @PostMapping("listcommngusertag")
    R listComMngUserTag(@RequestParam("communityId")Long communityId);
    /**
     * 新增删除用户标签
     * @param systemmanagementConfigVO 操作内容
     * @return 操作结果
     */
    @PostMapping("putcommngusertag")
    R putComMngUserTag(@RequestBody SystemmanagementConfigVO systemmanagementConfigVO);
}