diff --git a/ZR.Admin.WebApi/Controllers/System/SysUserController.cs b/ZR.Admin.WebApi/Controllers/System/SysUserController.cs index bde841d..0f2e2e3 100644 --- a/ZR.Admin.WebApi/Controllers/System/SysUserController.cs +++ b/ZR.Admin.WebApi/Controllers/System/SysUserController.cs @@ -182,7 +182,7 @@ namespace ZR.Admin.WebApi.Controllers.System List users = new(); using (var stream = formFile.OpenReadStream()) { - users = stream.Query().ToList(); + users = stream.Query(startCell: "A2").ToList(); } return SUCCESS(UserService.ImportUsers(users)); diff --git a/ZR.Admin.WebApi/wwwroot/ImportTemplate/user.xlsx b/ZR.Admin.WebApi/wwwroot/ImportTemplate/user.xlsx index a8a2b77..74e4f1d 100644 Binary files a/ZR.Admin.WebApi/wwwroot/ImportTemplate/user.xlsx and b/ZR.Admin.WebApi/wwwroot/ImportTemplate/user.xlsx differ