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.CodeOsattributeEntity;
|
import com.vci.ubcs.code.service.ICodeOsattributeService;
|
import com.vci.ubcs.code.vo.CodeOsattributeVO;
|
import org.springframework.stereotype.Service;
|
|
import java.util.Collection;
|
import java.util.Map;
|
import java.util.function.Function;
|
|
@Service
|
public class CodeOsattributeServiceImpl implements ICodeOsattributeService {
|
@Override
|
public IPage<CodeOsattributeVO> selectCodeOsattributePage(IPage<CodeOsattributeVO> page, CodeOsattributeVO CodeOsattribute) {
|
return null;
|
}
|
|
@Override
|
public boolean saveBatch(Collection<CodeOsattributeEntity> entityList, int batchSize) {
|
return false;
|
}
|
|
@Override
|
public boolean saveOrUpdateBatch(Collection<CodeOsattributeEntity> entityList, int batchSize) {
|
return false;
|
}
|
|
@Override
|
public boolean updateBatchById(Collection<CodeOsattributeEntity> entityList, int batchSize) {
|
return false;
|
}
|
|
@Override
|
public boolean saveOrUpdate(CodeOsattributeEntity entity) {
|
return false;
|
}
|
|
@Override
|
public CodeOsattributeEntity getOne(Wrapper<CodeOsattributeEntity> queryWrapper, boolean throwEx) {
|
return null;
|
}
|
|
@Override
|
public Map<String, Object> getMap(Wrapper<CodeOsattributeEntity> queryWrapper) {
|
return null;
|
}
|
|
@Override
|
public <V> V getObj(Wrapper<CodeOsattributeEntity> queryWrapper, Function<? super Object, V> mapper) {
|
return null;
|
}
|
|
@Override
|
public BaseMapper<CodeOsattributeEntity> getBaseMapper() {
|
return null;
|
}
|
|
@Override
|
public Class<CodeOsattributeEntity> getEntityClass() {
|
return null;
|
}
|
}
|