1
0
mirror of synced 2026-02-15 00:58:07 +08:00

#745 增加卡券失效接口,并修复会员卡是否支持微信支付和会员卡二维码的属性问题

* 1、增加卡券失效接口;修复会员卡是否支持微信支付和会员卡二维码的属性问题;
This commit is contained in:
yuanqixun
2018-09-04 11:26:39 +08:00
committed by Binary Wang
parent fca9024424
commit 95e398de7e
6 changed files with 73 additions and 13 deletions

View File

@@ -91,4 +91,13 @@ public class WxMpCardServiceImplTest {
System.out.println(result);
}
@Test
public void testUnavailableCardCode() throws Exception {
String cardId = "p2iQk1luzj50RHue6yeTPQpAx_Z4";
String code = "134905347310";
String reason = "换成新卡了";
String result = this.wxService.getCardService().unavailableCardCode(cardId, code, reason);
assertNotNull(result);
System.out.println(result);
}
}