fix: cdr/ue去除导出条数限制

This commit is contained in:
TsMask
2025-08-28 14:59:22 +08:00
parent 1429d35167
commit 8cf46bfd88
6 changed files with 1 additions and 24 deletions

View File

@@ -138,10 +138,6 @@ func (s *IMSController) CDRExport(c *gin.Context) {
// for multi-tenancy
querys.UserName = ctx.LoginUserToUserName(c)
// 限制导出数据集
if querys.PageSize > 10000 {
querys.PageSize = 10000
}
// 查询网元信息 rmUID
neInfo := s.neInfoService.SelectNeInfoByNeTypeAndNeID(querys.NeType, querys.NeID)
if neInfo.NeId != querys.NeID || neInfo.IP == "" {