用户列表导出接口1

This commit is contained in:
gong
2026-01-28 13:57:30 +08:00
parent 9e2cf024eb
commit c984867e4e
2 changed files with 10 additions and 11 deletions

View File

@@ -97,6 +97,12 @@ public class ShopUserController {
return CzgResult.success(shopUserService.getPage(key, isVip, amount));
}
/**
* 导出用户列表
*
* @param key 昵称或手机号
* @param isVip 0 非vip 1 vip
*/
@GetMapping("/export")
public void exportUserList(String key, Integer isVip, HttpServletResponse response) {
shopUserService.exportUserList(key, isVip, response);