|
@@ -1,5 +1,6 @@
|
|
|
package com.persagy.proxy.adm.request;
|
|
|
|
|
|
+import cn.hutool.core.collection.CollUtil;
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
import com.persagy.proxy.adm.utils.AdmEntityTransferUtil;
|
|
|
import com.persagy.proxy.common.entity.DmpResult;
|
|
@@ -42,7 +43,7 @@ public class AdmResponse {
|
|
|
}
|
|
|
|
|
|
public static AdmResponse success(List<?> content) {
|
|
|
- return new AdmResponse(SUCCESS, null, content.size()*1L, 1, 500, content);
|
|
|
+ return new AdmResponse(SUCCESS, null, CollUtil.isEmpty(content) ? 0L :content.size()*1L, 1, 500, content);
|
|
|
}
|
|
|
|
|
|
/**
|