xing
2023-02-23 c75e6f4696634d626c5569794c6349593853223a
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
package com.yssh.service.impl;
 
import com.yssh.dao.YsshSuYuan300Mapper;
import com.yssh.entity.YsshSuYuanX00;
import com.yssh.entity.dto.YsshSuYuanX00UpdateBatchParam;
import com.yssh.service.YsshSuYuan300Service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * @author lishijia
 * @ClassName YsshSuYuan300ServiceImpl
 * @Description TODO
 * @date 2022/11/28 10:47
 * @Version 1.0
 */
@Service
public class YsshSuYuan300ServiceImpl implements YsshSuYuan300Service {
    @Autowired
    private YsshSuYuan300Mapper ysshSuYuan300Mapper;
 
    @Override
    public List<YsshSuYuanX00> query(String name) {
        return ysshSuYuan300Mapper.query(name);
    }
    @Override
    public List<YsshSuYuanX00> queryByIds(List<Integer> ids) {
        return ysshSuYuan300Mapper.queryByIds(ids);
    }
    @Override
    public List<YsshSuYuanX00> getAll() {
        return ysshSuYuan300Mapper.getAll();
    }
    @Override
    public int insert(YsshSuYuanX00 ysshSuYuan) {
        return ysshSuYuan300Mapper.insert(ysshSuYuan);
    }
    @Override
    public int delete(String id) {
        return ysshSuYuan300Mapper.delete(id);
    }
    @Override
    public int update(YsshSuYuanX00 ysshSuYuan) {
        return ysshSuYuan300Mapper.update(ysshSuYuan);
    }
    @Override
    public int updateBatch(YsshSuYuanX00UpdateBatchParam param) {
        return ysshSuYuan300Mapper.updateBatch(param);
    }
}