大象工具包调整为项目依赖

beta
kk 2 years ago
parent 65b07f8a21
commit 0fc454b62f
  1. 6
      jianshui-admin/pom.xml
  2. BIN
      jianshui-invoice/lib/SIMS-order-sdk-1.2.3-RELEASE.jar
  3. 9
      jianshui-invoice/pom.xml
  4. 1
      jianshui-invoice/src/main/java/com/jianshui/invoice/service/impl/api/ElephantInvoiceApiV6ServiceImpl.java

@ -117,6 +117,9 @@
</dependency>
</dependencies>
<build>
@ -127,6 +130,9 @@
<version>2.1.1.RELEASE</version>
<configuration>
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
<!--打包本地jar配置-->
<executable>true</executable>
<includeSystemScope>true</includeSystemScope>
</configuration>
<executions>
<execution>

@ -65,14 +65,21 @@
<scope>compile</scope>
</dependency>
<!--大象慧云V6接口SDK-->
<!--<dependency>
<groupId>com.dxhy.order</groupId>
<artifactId>SIMS-order-sdk</artifactId>
<version>1.2.3-RELEASE</version>
</dependency>-->
<!--大象慧云V6接口SDK-->
<dependency>
<groupId>com.dxhy.order</groupId>
<artifactId>SIMS-order-sdk</artifactId>
<version>1.2.3-RELEASE</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/SIMS-order-sdk-1.2.3-RELEASE.jar</systemPath>
</dependency>
</dependencies>

@ -12,6 +12,7 @@ import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.dxhy.order.protocol.invoke.DxhyInterfaceResponse;
import com.google.gson.Gson;
import com.jianshui.common.constant.Constants;

Loading…
Cancel
Save