|
@@ -29,6 +29,7 @@ import com.persagy.common.utils.StringUtil;
|
|
|
import com.persagy.security.constant.CipherConstants;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
@@ -48,6 +49,7 @@ import java.util.Map;
|
|
|
* @author zhangqiankun
|
|
|
* @date 2021-03-13 15:29:50
|
|
|
*/
|
|
|
+@Slf4j
|
|
|
@Api(tags = "功能信息")
|
|
|
@RestController
|
|
|
@RequestMapping(value = "/function", method = RequestMethod.POST)
|
|
@@ -84,6 +86,7 @@ public class SaasFunctionController {
|
|
|
@ApiOperation(value = "菜单下功能点查询")
|
|
|
@RequestMapping(value = "queryMenuFunctionList")
|
|
|
public ResponseResult queryMenuFunctionList(@RequestBody @Validated SaasMenuFunctionVO model) {
|
|
|
+ log.info("菜单下查询功能点!---");
|
|
|
// 判断此账号的权限范围
|
|
|
boolean isAdmin = false;
|
|
|
Map<String, String> authMap = this.saasAuthHandler.validAccountAuth(model.getAccountId(), model.getGroupCode());
|