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

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

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

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

Loading…
Cancel
Save