Commit 8fc1fdee by huangZW

111

parent d1dc95a4
package com.gic.haoban.manage.api.service;
/**
* Created by tgs on 2020/2/9.
*/
public interface ApplicationSettingApiService {
void saveSetting(String wxEnterpriseId,String applicationId, int openFlag);
void findSettingByWxEnterpriseIdAndApplicationId(String wxEnterpriseId,String applicationId);
}
package com.gic.haoban.manage.service.service.out.impl;
import com.gic.haoban.manage.api.service.ApplicationSettingApiService;
/**
* Created by tgs on 2020/2/9.
*/
public class ApplicationSettingApiServiceImpl implements ApplicationSettingApiService{
@Override
public void saveSetting(String wxEnterpriseId, String applicationId,
int openFlag) {
// TODO Auto-generated method stub
}
@Override
public void findSettingByWxEnterpriseIdAndApplicationId(
String wxEnterpriseId, String applicationId) {
// TODO Auto-generated method stub
}
}
...@@ -32,6 +32,8 @@ ...@@ -32,6 +32,8 @@
<dubbo:service interface="com.gic.haoban.manage.api.service.WxApplicationApiService" ref="wxApplicationApiService" timeout="10000" /> <dubbo:service interface="com.gic.haoban.manage.api.service.WxApplicationApiService" ref="wxApplicationApiService" timeout="10000" />
<dubbo:service interface="com.gic.haoban.manage.api.service.MemberUnionidRelatedApiService" ref="memberUnionidRelatedApiServiceImpl" timeout="10000"/> <dubbo:service interface="com.gic.haoban.manage.api.service.MemberUnionidRelatedApiService" ref="memberUnionidRelatedApiServiceImpl" timeout="10000"/>
<dubbo:service interface="com.gic.haoban.manage.api.service.BindApiService" ref="bindApiServiceImpl" timeout="10000"/> <dubbo:service interface="com.gic.haoban.manage.api.service.BindApiService" ref="bindApiServiceImpl" timeout="10000"/>
<dubbo:service interface="com.gic.haoban.manage.api.service.ApplicationSettingApiService" ref="applicationSettingApiServiceImpl" timeout="10000"/>
<dubbo:reference interface="com.gic.enterprise.api.service.DepartmentService" id="gicDepartmentService"/> <dubbo:reference interface="com.gic.enterprise.api.service.DepartmentService" id="gicDepartmentService"/>
<dubbo:reference interface="com.gic.wechat.api.service.qywx.QywxDepartmentApiService" id="qywxDepartmentApiService"/> <dubbo:reference interface="com.gic.wechat.api.service.qywx.QywxDepartmentApiService" id="qywxDepartmentApiService"/>
......
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