区块链调用
This commit is contained in:
Binary file not shown.
2
pom.xml
2
pom.xml
@ -106,7 +106,7 @@
|
|||||||
<artifactId>accessToken</artifactId>
|
<artifactId>accessToken</artifactId>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<scope>system</scope>
|
<scope>system</scope>
|
||||||
<systemPath>${basedir}/lib/access_token1.0.jar</systemPath>
|
<systemPath>${basedir}/lib/access_token1.1.jar</systemPath>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -156,6 +156,6 @@ public class CrypConfigureController{
|
|||||||
@GetMapping("/getAccessToken")
|
@GetMapping("/getAccessToken")
|
||||||
public BaseResponse<String> getAccessToken() {
|
public BaseResponse<String> getAccessToken() {
|
||||||
|
|
||||||
return BaseResponse.success( AccessToken.tokenCreate());
|
return BaseResponse.success( AccessToken.tokenCreate("bidding"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -176,7 +176,7 @@ public class CrypConfigureServiceImpl extends BaseServiceImpl<CrypConfigureMappe
|
|||||||
reqhead.setSystemName("bidding");
|
reqhead.setSystemName("bidding");
|
||||||
reqhead.setUserId(service.getCacheUser().getUserId()!=null?service.getCacheUser().getUserId():"system");
|
reqhead.setUserId(service.getCacheUser().getUserId()!=null?service.getCacheUser().getUserId():"system");
|
||||||
reqhead.setUserName(service.getCacheUser().getFullName()!=null?service.getCacheUser().getFullName():"电子招投标");
|
reqhead.setUserName(service.getCacheUser().getFullName()!=null?service.getCacheUser().getFullName():"电子招投标");
|
||||||
reqhead.setAccessToken(AccessToken.tokenCreate());
|
reqhead.setAccessToken(AccessToken.tokenCreate("bidding"));
|
||||||
|
|
||||||
log.debug("业务参数封装前:"+map);
|
log.debug("业务参数封装前:"+map);
|
||||||
UniCrpyReq req = new UniCrpyReq();
|
UniCrpyReq req = new UniCrpyReq();
|
||||||
|
Reference in New Issue
Block a user