forked from github/dataease
Merge pull request #9368 from dataease/pr@dev-v2@perf_report
feat(X-Pack): 定时报告-隐藏菜单
This commit is contained in:
commit
efb03fca41
2
de-xpack
2
de-xpack
@ -1 +1 @@
|
||||
Subproject commit 8b61800322d6a6ca5114bebc3b5cbabc17653d3d
|
||||
Subproject commit 2cd69cc8e4e6cf2cec8f247f5544bb38872aa4b3
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user