刘光辉
昨天 bb638871a7fb692d80f1b7a758f991dc0879002c
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
package jnpf.base.service.impl;
 
import jnpf.base.mapper.AiMapper;
import jnpf.base.model.ai.AiPagination;
import jnpf.base.service.AiService;
import jnpf.base.service.SuperServiceImpl;
import jnpf.base.entity.AiEntity;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
 
/**
 * 个人签名
 *
 * @author JNPF开发平台组
 * @copyright 引迈信息技术有限公司
 * @date 2022年9月2日 上午9:18
 */
@Service
public class AiServiceImpl extends SuperServiceImpl<AiMapper, AiEntity> implements AiService {
 
 
    @Override
    public List<AiEntity> getList(AiPagination pagination) {
        return this.baseMapper.getList(pagination);
    }
 
    @Override
    public boolean isExistByFullName(String fullName, String id) {
        return this.baseMapper.isExistByFullName(fullName,id);
    }
 
    @Override
    public AiEntity getInfo(String id) {
        return this.baseMapper.getInfo(id);
    }
 
    @Override
    public boolean create(AiEntity entity) {
        return this.baseMapper.create(entity);
    }
 
    @Override
    public boolean update(String id, AiEntity entity) {
        return this.baseMapper.update(id, entity);
    }
 
    @Override
    public void delete(AiEntity entity) {
        this.baseMapper.delete(entity);
    }
 
    @Override
    public AiEntity getDefault() {
        return this.baseMapper.getDefault();
    }
}