1
0
mirror of synced 2025-12-20 23:58:05 +08:00

🆕 #1328 微信卡劵增加用户已领取卡券列表接口

* 微信公众号,功能新增,微信卡券
添加用户已领取卡券接口

* 添加用户已领取卡券接口测试代码
This commit is contained in:
yang229
2019-12-22 16:06:36 +08:00
committed by Binary Wang
parent 8c514a7850
commit 5761226887
6 changed files with 107 additions and 0 deletions

View File

@@ -227,4 +227,13 @@ public class WxMpCardServiceImplTest {
@Test
public void testCreateLandingPage() {
}
@Test
public void testGetUserCardList() throws WxErrorException {
String openId = "ou7Gr5sJZgFGgj38sRCNQg5pc3Fc";
String cardId = "pu7Gr5secJXPkxBeuYUhmp8TYsuY";
WxUserCardListResult result = this.wxService.getCardService().getUserCardList(openId, cardId);
assertTrue(result.isSuccess());
System.out.println(result);
}
}