public IActionResult BathDeleteAdminUser(string ids)
        {
            if (string.IsNullOrEmpty(ids))
            {
                return(Json(new BaseResponse {
                    IsSuccess = false, Msg = "请求参数不能为空"
                }));
            }

            var res = _isAdminUserService.BathStartOrLimitAdminUser(new AdminUserRequest {
                IdList = ids.Split(',').ToList()
            });

            return(Json(new BaseResponse {
                IsSuccess = res, Msg = res ? "成功" : "操作失败"
            }));
        }