管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-12-24 09b6ca0c60b882d6ba13bd7f7b37576203d93d3f
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
66
67
68
69
70
71
72
73
74
package com.lf.server.service.show;
 
import com.lf.server.entity.show.ApplyEntity;
import com.lf.server.mapper.show.ApplyMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * 数据申请
 * @author WWW
 */
@Service
public class ApplyService implements ApplyMapper {
    @Autowired
    ApplyMapper applyMapper;
 
    @Override
    public Integer selectCount(Integer userid) {
        return applyMapper.selectCount(userid);
    }
 
    @Override
    public List<ApplyEntity> selectByPage(Integer userid, Integer limit, Integer offset) {
        return applyMapper.selectByPage(userid, limit, offset);
    }
 
    @Override
    public List<ApplyEntity> selectAll() {
        return applyMapper.selectAll();
    }
 
    @Override
    public ApplyEntity selectById(int id) {
        return applyMapper.selectById(id);
    }
 
    @Override
    public Integer insert(ApplyEntity entity) {
        return applyMapper.insert(entity);
    }
 
    @Override
    public Integer inserts(List<ApplyEntity> list) {
        return applyMapper.inserts(list);
    }
 
    @Override
    public Integer delete(int id) {
        return applyMapper.delete(id);
    }
 
    @Override
    public Integer deletes(List<Integer> ids) {
        return applyMapper.deletes(ids);
    }
 
    @Override
    public Integer update(ApplyEntity entity) {
        return applyMapper.update(entity);
    }
 
    @Override
    public Integer updates(List<ApplyEntity> list) {
        return applyMapper.updates(list);
    }
 
    public Integer insertApply(){
 
 
        return 0;
    }
}