package com.vci.ubcs.code.service.impl; import com.baomidou.mybatisplus.core.conditions.Wrapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.vci.ubcs.code.entity.CodeOsbtmtypeattributeEntity; import com.vci.ubcs.code.service.ICodeOsbtmtypeattributeService; import com.vci.ubcs.code.vo.CodeOsbtmtypeattributeVO; import org.springframework.stereotype.Service; import java.util.Collection; import java.util.Map; import java.util.function.Function; @Service public class CodeOsbtmtypeattributeServiceImpl implements ICodeOsbtmtypeattributeService { @Override public IPage selectCodeOsbtmtypeattributePage(IPage page, CodeOsbtmtypeattributeVO CodeOsbtmtypeattribute) { return null; } @Override public boolean saveBatch(Collection entityList, int batchSize) { return false; } @Override public boolean saveOrUpdateBatch(Collection entityList, int batchSize) { return false; } @Override public boolean updateBatchById(Collection entityList, int batchSize) { return false; } @Override public boolean saveOrUpdate(CodeOsbtmtypeattributeEntity entity) { return false; } @Override public CodeOsbtmtypeattributeEntity getOne(Wrapper queryWrapper, boolean throwEx) { return null; } @Override public Map getMap(Wrapper queryWrapper) { return null; } @Override public V getObj(Wrapper queryWrapper, Function mapper) { return null; } @Override public BaseMapper getBaseMapper() { return null; } @Override public Class getEntityClass() { return null; } }