feat(REQ-3010): 请求类型调整

This commit is contained in:
chenwenjian 2024-10-14 19:40:56 +08:00
parent 3eaa81f435
commit de0b6d1b80

View File

@ -11,6 +11,7 @@ import cn.axzo.tyr.client.model.res.SuperAminInfoResp;
import cn.azxo.framework.common.model.CommonResponse;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
@ -59,7 +60,7 @@ public interface SaasRoleApi {
@PostMapping("api/saas/role/findSuperAdmin")
CommonResponse<SuperAminInfoResp> findSuperAdmin(@RequestBody @Valid QuerySuperAdminReq req);
@PostMapping("api/saas/role/listUserRoleExByParams")
@GetMapping("api/saas/role/listUserRoleExByParams")
CommonResponse<List<SaasUserRoleExBO>> getUserRoleExListMapByIdentityIdAndWorkspaceId(List<Long> identityIds,
IdentityType identityType,
Long workspaceId);