重命名客服接口获取方法名称,保证统一

This commit is contained in:
BinaryWang
2016-07-05 10:30:41 +08:00
parent e169bcc2e9
commit 244df15d83
3 changed files with 12 additions and 3 deletions

View File

@ -23,8 +23,9 @@ public class ApiTestModule implements Module {
WxXmlMpInMemoryConfigStorage.class, is1);
WxMpServiceImpl wxService = new WxMpServiceImpl();
wxService.setWxMpConfigStorage(config);
WxMpKefuService customerService = new WxMpKefuServiceImpl();
wxService.setCustomerService(customerService);
WxMpKefuService kefuService = new WxMpKefuServiceImpl();
wxService.setKefuService(kefuService);
binder.bind(WxMpServiceImpl.class).toInstance(wxService);
binder.bind(WxMpConfigStorage.class).toInstance(config);