lihang
2023-05-04 3579af2945dd38d841a23cd340acd474bb63773a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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<CodeOsbtmtypeattributeVO> selectCodeOsbtmtypeattributePage(IPage<CodeOsbtmtypeattributeVO> page, CodeOsbtmtypeattributeVO CodeOsbtmtypeattribute) {
        return null;
    }
 
    @Override
    public boolean saveBatch(Collection<CodeOsbtmtypeattributeEntity> entityList, int batchSize) {
        return false;
    }
 
    @Override
    public boolean saveOrUpdateBatch(Collection<CodeOsbtmtypeattributeEntity> entityList, int batchSize) {
        return false;
    }
 
    @Override
    public boolean updateBatchById(Collection<CodeOsbtmtypeattributeEntity> entityList, int batchSize) {
        return false;
    }
 
    @Override
    public boolean saveOrUpdate(CodeOsbtmtypeattributeEntity entity) {
        return false;
    }
 
    @Override
    public CodeOsbtmtypeattributeEntity getOne(Wrapper<CodeOsbtmtypeattributeEntity> queryWrapper, boolean throwEx) {
        return null;
    }
 
    @Override
    public Map<String, Object> getMap(Wrapper<CodeOsbtmtypeattributeEntity> queryWrapper) {
        return null;
    }
 
    @Override
    public <V> V getObj(Wrapper<CodeOsbtmtypeattributeEntity> queryWrapper, Function<? super Object, V> mapper) {
        return null;
    }
 
    @Override
    public BaseMapper<CodeOsbtmtypeattributeEntity> getBaseMapper() {
        return null;
    }
 
    @Override
    public Class<CodeOsbtmtypeattributeEntity> getEntityClass() {
        return null;
    }
}