wanglang 14 時間 前
コミット
8610d357a6

+ 3 - 0
trade-service/src/main/java/com/trade/service/thirdparty/xiaotu/dto/CommodityRequest.java

@@ -11,6 +11,9 @@ import lombok.Data;
 @Data
 public class CommodityRequest {
 
+    public static final String OTHER = "3";
+    public static final String TAX_FREE = "2";
+    public static final String PROHIBITION_EXPORT = "1";
     /**
      * 商品名称/商品代码 是
      */

+ 2 - 0
trade-service/src/main/java/com/trade/service/thirdparty/xiaotu/service/impl/XiaotuRequestServiceImpl.java

@@ -124,6 +124,7 @@ public class XiaotuRequestServiceImpl implements XiaotuRequestService {
             logger.error("小图:退税税率查询接口,req={},resp={}", request, resp);
             throw new RuntimeException("小图:退税税率查询接口失败");
         }
+        logger.info("小图:退税税率查询接口,req={},resp={}", request, resp);
         return commonResponse.getBody();
     }
 
@@ -139,6 +140,7 @@ public class XiaotuRequestServiceImpl implements XiaotuRequestService {
             logger.error("小图:海关税则查询接口,req={},resp={}", spid, resp);
             throw new RuntimeException("小图:海关税则查询接口失败");
         }
+        logger.info("小图:退税税率查询接口,req={},resp={}", spid, resp);
         return commonResponse.getBody();
     }