| | |
| | | import com.vci.ubcs.starter.revision.model.BaseModel; |
| | | import org.springblade.core.tool.api.R; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.beans.IntrospectionException; |
| | | import java.lang.reflect.InvocationTargetException; |
| | | import java.sql.SQLException; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | public class IMdmEngineFallback implements IMdmEngineClient { |
| | | |
| | | @Override |
| | | public R<List<BaseModel>> selectByTypeAndOid(String btmType, String oids) throws SQLException, IntrospectionException, NoSuchFieldException, InvocationTargetException, IllegalAccessException, InstantiationException { |
| | | public R<List<BaseModel>> selectByTypeAndOid(String btmType, String oids) { |
| | | return R.fail("获取数据失败"); |
| | | } |
| | | |
| | | @Override |
| | | public R<Integer> insertBatchByType(String btmType, List<BaseModel> baseModels) throws Exception { |
| | | return R.fail("获取数据失败"); |
| | | public R<Integer> insertBatchByType(String btmType, List<BaseModel> baseModels){ |
| | | return R.fail("插入数据失败"); |
| | | } |
| | | |
| | | @Override |
| | | public R<Integer> updateBatchBtypeDatas(String btmType, List<BaseModel> baseModels) { |
| | | return R.fail("更新数据失败"); |
| | | } |
| | | |
| | | } |