diff --git a/tixwork-service/cust-models/src/main/java/com/tiandtech/core/service/UserExtendService.java b/tixwork-service/cust-models/src/main/java/com/tiandtech/core/service/UserExtendService.java index 8da9a89..27f8c77 100644 --- a/tixwork-service/cust-models/src/main/java/com/tiandtech/core/service/UserExtendService.java +++ b/tixwork-service/cust-models/src/main/java/com/tiandtech/core/service/UserExtendService.java @@ -14,4 +14,9 @@ public class UserExtendService implements SysUserExtendService { public void postUserCreate(SysUser user) { Console.log("post....", user.getUserName()); } + + @Override + public void postUserRegistry(SysUser user) { + + } } diff --git a/tixwork-service/tixwork-wechat/build.gradle b/tixwork-service/tixwork-wechat/build.gradle index e0b35f7..a51fff6 100644 --- a/tixwork-service/tixwork-wechat/build.gradle +++ b/tixwork-service/tixwork-wechat/build.gradle @@ -7,11 +7,11 @@ dependencies { api project(":tixwork-websocket") api project(":cust-models") - implementation "com.github.binarywang:wx-java-mp-spring-boot-starter:${wechatSDKVersion}" - implementation "com.github.binarywang:wx-java-miniapp-spring-boot-starter:${wechatSDKVersion}" - implementation "com.github.binarywang:weixin-java-pay:${wechatSDKVersion}" - implementation "com.github.binarywang:wx-java-pay-spring-boot-starter:${wechatSDKVersion}" + api "com.github.binarywang:wx-java-mp-spring-boot-starter:${wechatSDKVersion}" + api "com.github.binarywang:wx-java-miniapp-spring-boot-starter:${wechatSDKVersion}" + api "com.github.binarywang:weixin-java-pay:${wechatSDKVersion}" + api "com.github.binarywang:wx-java-pay-spring-boot-starter:${wechatSDKVersion}" - implementation "org.jsoup:jsoup:${jsoupVersion}" + api "org.jsoup:jsoup:${jsoupVersion}" }