|
|
@@ -53,23 +53,6 @@ public class UserHoldCountController {
|
|
|
return top;
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/app/top")
|
|
|
- public List<UserHoldDTO> appTop() {
|
|
|
- List<UserHoldDTO> top = top();
|
|
|
- if (CollectionUtils.isEmpty(top)) {
|
|
|
- return null;
|
|
|
- }
|
|
|
- top.forEach(userHoldDTO -> {
|
|
|
- userHoldDTO.setNum(0);
|
|
|
- userHoldDTO.setUsername(null);
|
|
|
- userHoldDTO.setPrefixName(null);
|
|
|
- userHoldDTO.setName(null);
|
|
|
- userHoldDTO.setPrice(null);
|
|
|
- userHoldDTO.setUserId(null);
|
|
|
- });
|
|
|
- return top;
|
|
|
- }
|
|
|
-
|
|
|
@GetMapping("/excel")
|
|
|
@ResponseBody
|
|
|
public void excel(HttpServletResponse response, PageQuery pageQuery) throws IOException {
|