Commit 46964fa3 by qwmqiuwenmin

接口

parent d06da236
package com.gic.haoban.manage.api.service;
public interface ApplicationApiService {
}
package com.gic.haoban.manage.api.service;
public interface DepartmentApiService {
}
package com.gic.haoban.manage.api.service;
public interface StaffApiService {
}
package com.gic.haoban.manage.api.service;
public interface WxEnterpriseRelatedApiService {
}
package com.gic.haoban.manage.service.service;
public interface ApplicationService {
}
package com.gic.haoban.manage.service.service;
public interface DepartmentService {
}
package com.gic.haoban.manage.service.service;
public interface StaffDepartmentRelatedService {
}
package com.gic.haoban.manage.service.service;
public interface StaffService {
}
package com.gic.haoban.manage.service.service;
public interface WxEnterpriseRelatedService {
}
package com.gic.haoban.manage.service.service.impl;
import com.gic.haoban.manage.api.service.ApplicationApiService;
public class ApplicationApiServiceImpl implements ApplicationApiService {
}
package com.gic.haoban.manage.service.service.impl;
import org.springframework.stereotype.Service;
import com.gic.haoban.manage.api.service.DepartmentApiService;
@Service
public class DepartmentApiServiceImpl implements DepartmentApiService {
}
package com.gic.haoban.manage.service.service.impl;
import org.springframework.stereotype.Service;
import com.gic.haoban.manage.api.service.StaffApiService;
@Service
public class StaffApiServiceImpl implements StaffApiService {
}
package com.gic.haoban.manage.service.service.impl;
import org.springframework.stereotype.Service;
import com.gic.haoban.manage.api.service.WxEnterpriseRelatedApiService;
@Service
public class WxEnterpriseRelatedApiServiceImpl implements WxEnterpriseRelatedApiService {
}
package com.gic.haoban.manage.service.service.out.impl;
import org.springframework.stereotype.Service;
import com.gic.haoban.manage.service.service.ApplicationService;
@Service
public class ApplicationServiceImpl implements ApplicationService{
}
package com.gic.haoban.manage.service.service.out.impl;
import org.springframework.stereotype.Service;
import com.gic.haoban.manage.service.service.DepartmentService;
@Service
public class DepartmentServiceImpl implements DepartmentService {
}
package com.gic.haoban.manage.service.service.out.impl;
import org.springframework.stereotype.Service;
import com.gic.haoban.manage.api.service.StaffApiService;
import com.gic.haoban.manage.service.service.StaffDepartmentRelatedService;
@Service
public class StaffDepartmentRelatedServiceImpl implements StaffDepartmentRelatedService, StaffApiService {
}
package com.gic.haoban.manage.service.service.out.impl;
import org.springframework.stereotype.Service;
import com.gic.haoban.manage.service.service.StaffService;
@Service
public class StaffServiceImpl implements StaffService {
}
package com.gic.haoban.manage.service.service.out.impl;
import org.springframework.stereotype.Service;
import com.gic.haoban.manage.service.service.WxEnterpriseRelatedService;
@Service
public class WxEnterpriseRelatedServiceImpl implements WxEnterpriseRelatedService {
}
......@@ -22,5 +22,10 @@
<constructor-arg index="0" value="haoban-manage-service"/>
</bean>
<dubbo:service interface="com.gic.haoban.manage.api.service.ApplicationApiService" ref="applicationApiService" timeout="10000" />
<dubbo:service interface="com.gic.haoban.manage.api.service.DepartmentApiService" ref="departmentApiService" timeout="10000" />
<dubbo:service interface="com.gic.haoban.manage.api.service.StaffApiService" ref="StaffApiService" timeout="10000" />
<dubbo:service interface="com.gic.haoban.manage.api.service.WxEnterpriseRelatedApiService" ref="wxEnterpriseRelatedApiService" 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