潘志宝
2024-09-25 b1f48133eda26d7ccf838167519cf8b299fbe140
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
package com.iailab.module.model.mcs.pre.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.module.model.mcs.pre.dao.MmResultTableDao;
import com.iailab.module.model.mcs.pre.entity.MmResultTableEntity;
import com.iailab.module.model.mcs.pre.service.MmResultTableService;
import com.iailab.module.model.mcs.pre.vo.MmResultTablePageReqVO;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
import java.util.*;
 
;
 
/**
 * @author PanZhibao
 * @date 2021年04月23日 16:28
 */
@Service
public class MmResultTableServiceImpl extends ServiceImpl<MmResultTableDao, MmResultTableEntity> implements MmResultTableService {
    @Autowired
    private MmResultTableDao mmResultTableDao;
    
    @Override
    public PageResult<MmResultTableEntity> page(MmResultTablePageReqVO reqVO) {
        return mmResultTableDao.selectPage(reqVO);
    }
 
    @Override
    public MmResultTableEntity info(String id) {
        return mmResultTableDao.selectById(id);
    }
 
    @Override
    public List<MmResultTableEntity> list(Map<String, Object> params) {
        return mmResultTableDao.selectList(new QueryWrapper<>());
    }
 
    @Override
    public void saveResultTable(MmResultTableEntity resultTable) {
        resultTable.setId(UUID.randomUUID().toString());
        mmResultTableDao.insert(resultTable);
    }
 
    @Override
    public void update(MmResultTableEntity resultTable) {
        mmResultTableDao.updateById(resultTable);
    }
 
    @Override
    public void deleteBatch(String[] resultTableIds) {
        mmResultTableDao.deleteBatchIds(Arrays.asList(resultTableIds));
    }
 
    @Override
    public int check(MmResultTableEntity resultTable) {
        String id = resultTable.getId();
        String tablename = resultTable.getTablename();
        QueryWrapper<MmResultTableEntity> queryWrapper = new QueryWrapper<>();
        queryWrapper.ne(StringUtils.isNotBlank(id), "id", id);
        queryWrapper.and(wrapper -> wrapper.eq("tablename",tablename));
 
        List<MmResultTableEntity> list = mmResultTableDao.selectList(queryWrapper);
        return list.size();
    }
}