Explorar el Código

华为hag接口

xushengqiang hace 5 años
padre
commit
4649083046

+ 2 - 2
src/main/java/cn/efunbox/audio/impl/hag/HagProductServiceImpl.java

@@ -34,8 +34,8 @@ public class HagProductServiceImpl implements HagProductService {
         if (Objects.isNull(limit)) {
             limit = 10;
         }
-        if (limit > 10000) {
-            limit = 10000;
+        if (limit > 1000) {
+            limit = 1000;
         }
         Integer start = paginationReq.getStart();
         if (Objects.isNull(start)) {

+ 1 - 1
src/main/java/cn/efunbox/audio/vo/hag/HagBaseResp.java

@@ -7,7 +7,7 @@ import lombok.Data;
  * Created by xusq on 2019/12/25.
  */
 @Data
-public class HagBaseResp{
+public abstract class HagBaseResp{
 
     private String errorCode = "0";
     private String errorMessage = "OK";