diff --git a/jsowell-admin/src/test/java/SpringBootTestController.java b/jsowell-admin/src/test/java/SpringBootTestController.java index 8715895ff..f668b4f7e 100644 --- a/jsowell-admin/src/test/java/SpringBootTestController.java +++ b/jsowell-admin/src/test/java/SpringBootTestController.java @@ -13,7 +13,7 @@ import com.huifu.adapay.core.exception.BaseAdaPayException; import com.huifu.adapay.model.Refund; import com.jsowell.JsowellApplication; import com.jsowell.adapay.service.AdapayMemberService; -import com.jsowell.common.config.JsowellConfig; +import com.jsowell.adapay.vo.AdapayMemberInfoVO; import com.jsowell.common.constant.CacheConstants; import com.jsowell.common.constant.Constants; import com.jsowell.common.core.domain.entity.SysDictData; @@ -173,15 +173,16 @@ public class SpringBootTestController { @Test public void testQueryCorpMember() { - String filePath = JsowellConfig.getUploadPath(); - System.out.println(filePath); + // String filePath = JsowellConfig.getUploadPath(); + // System.out.println(filePath); - // String s = "ACM88202036"; - // try { - // adapayMemberService.queryCorpAdapayMemberInfo(s); - // } catch (BaseAdaPayException e) { - // throw new RuntimeException(e); - // } + String s = "ACM88202036"; + try { + AdapayMemberInfoVO adapayMemberInfoVO = adapayMemberService.queryCorpAdapayMemberInfo(s); + System.out.println(adapayMemberInfoVO); + } catch (BaseAdaPayException e) { + throw new RuntimeException(e); + } } @Test