package com.vci.ubcs.example.service.impl; import com.vci.ubcs.example.service.ICalledIntegrationService; import org.springframework.stereotype.Service; /** * 统一申请接口:UBCS编码资源管理系统,被其他集成的系统的通用接口调用示例 * @author ludc * @date 2024/2/27 20:34 */ @Service public class CalledIntegrationServiceImpl implements ICalledIntegrationService { /** * 编码系统,统一申请接口调用 */ @Override public void sendApplyCodeByRest() { } /** * 编码系统,统一申请接口,用WebService方式调用 */ @Override public void sendApplyCodeByWebService() { } }