ny
23 小时以前 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
package jnpf.onlinedev.service.impl;
 
import jnpf.base.service.SuperServiceImpl;
import jnpf.onlinedev.entity.VisualPersonalEntity;
import jnpf.onlinedev.mapper.VisualPersonalMapper;
import jnpf.onlinedev.model.DataInfoVO;
import jnpf.onlinedev.model.personalList.VisualPersonalInfo;
import jnpf.onlinedev.model.personalList.VisualPersonalVo;
import jnpf.onlinedev.service.VisualPersonalService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * 个性化列表视图服务实现
 *
 * @author JNPF开发平台组
 * @version v5.1.0
 * @copyright 引迈信息技术有限公司
 * @date 2024/8/27 18:24:42
 */
@Service
public class VisualPersonalServiceImpl extends SuperServiceImpl<VisualPersonalMapper, VisualPersonalEntity> implements VisualPersonalService {
 
    @Override
    public List<VisualPersonalEntity> getList(String menuId) {
        return this.baseMapper.getList(menuId);
    }
 
    @Override
    public List<VisualPersonalVo> getListVo(String menuId) {
        return this.baseMapper.getListVo(menuId);
    }
 
    @Override
    public VisualPersonalInfo getInfo(String id) {
        return this.baseMapper.getInfo(id);
    }
 
    @Override
    public boolean isExistByFullName(String fullName, String id, String menuId) {
        return this.baseMapper.isExistByFullName(fullName, id, menuId);
    }
 
    @Override
    public void setDataInfoVO(String menuId, DataInfoVO dataInfoVO) {
        this.baseMapper.setDataInfoVO(menuId, dataInfoVO);
    }
}