Commit 962b9dae by qwmqiuwenmin

fix

parent 7c9e7317
package com.gic.haoban.manage.api.service;
import com.gic.haoban.manage.api.dto.QywxCorpInfoSimpleDTO;
public interface WxCallbackApiService {
/**
* 接收企业回调信息
* @param dto
*/
void callbackReviceEnterprise(QywxCorpInfoSimpleDTO dto);
}
package com.gic.haoban.manage.service.service.out.impl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.gic.haoban.manage.api.dto.QywxCorpInfoSimpleDTO;
import com.gic.haoban.manage.api.service.WxCallbackApiService;
@Service
public class WxCallbackApiServiceImpl implements WxCallbackApiService {
@Override
public void callbackReviceEnterprise(QywxCorpInfoSimpleDTO dto) {
}
}
......@@ -27,6 +27,7 @@
<dubbo:service interface="com.gic.haoban.manage.api.service.StaffApiService" ref="staffApiServiceImpl" timeout="10000" />
<dubbo:service interface="com.gic.haoban.manage.api.service.WxEnterpriseRelatedApiService" ref="wxEnterpriseRelatedApiServiceImpl" timeout="10000" />
<dubbo:service interface="com.gic.haoban.manage.api.service.StaffDepartmentRelatedApiService" ref="staffDepartmentRelatedApiServiceImpl" timeout="10000" />
<dubbo:service interface="com.gic.haoban.manage.api.service.WxCallbackApiService" ref="wxCallbackApiServiceImpl" timeout="10000" />
</beans>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment