mirror of
https://github.com/dataease/dataease.git
synced 2026-05-14 21:12:33 +08:00
Merge pull request #9368 from dataease/pr@dev-v2@perf_report
feat(X-Pack): 定时报告-隐藏菜单
This commit is contained in:
2
de-xpack
2
de-xpack
Submodule de-xpack updated: 8b61800322...2cd69cc8e4
@@ -20,6 +20,7 @@ import org.springframework.web.bind.annotation.*;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import static io.dataease.constant.AuthResourceEnum.USER;
|
||||
|
||||
@@ -176,4 +177,8 @@ public interface UserApi {
|
||||
@Operation(summary = "绑定状态")
|
||||
@GetMapping("/bindStatus")
|
||||
List<Integer> bindStatus();
|
||||
|
||||
@Hidden
|
||||
@GetMapping("/getRecipient")
|
||||
List<Map<String, Object>> getRecipient(@RequestBody UserReciRequest request);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
package io.dataease.api.permissions.user.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class UserReciRequest implements Serializable {
|
||||
@Serial
|
||||
private static final long serialVersionUID = -2165057126540959376L;
|
||||
|
||||
private List<Long> uidList;
|
||||
|
||||
private List<Long> ridList;
|
||||
}
|
||||
Reference in New Issue
Block a user