yxm
2024-07-04 56f9e4bc47c53efcfab40ca75adf8c13ca334ae2
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
package cn.gistack.sm.sjztmd.service.impl;
 
import cn.gistack.sm.sjztmd.entity.TbProject;
import cn.gistack.sm.sjztmd.mapper.TbResAndDykeAllMapper;
import cn.gistack.sm.sjztmd.service.ITbResAndDykeAllService;
 
import cn.gistack.sm.sjztmd.vo.ResAndDykeAll;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
import java.util.List;
 
@Service
@DS("zt")
@Transactional(rollbackFor = Exception.class)
public class TbResAndDykeAllServiceImpl extends ServiceImpl<TbResAndDykeAllMapper,TbProject> implements ITbResAndDykeAllService {
 
    @Autowired
    private TbResAndDykeAllMapper tbResAndDykeAllMapper;
 
    @Override
    public List<ResAndDykeAll> getStatisticsTable(String code) {
        return tbResAndDykeAllMapper.getStatisticsTable(code) ;
    }
}