yantian yue
2023-10-18 f4a3430eb6b6800d4ef7330293dd8fb834eee196
提交 | 用户 | 时间
487b2f 1 package cn.stylefeng.guns.opcua.service.impl;
YY 2
3 import cn.stylefeng.guns.base.pojo.page.LayuiPageFactory;
4 import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
5 import cn.stylefeng.guns.opcua.entity.OpcuaConf;
6 import cn.stylefeng.guns.opcua.mapper.OpcuaConfMapper;
7 import cn.stylefeng.guns.opcua.model.params.OpcuaConfParam;
8 import cn.stylefeng.guns.opcua.model.result.OpcuaConfResult;
9 import  cn.stylefeng.guns.opcua.service.OpcuaConfService;
10 import cn.stylefeng.roses.core.util.ToolUtil;
11 import com.baomidou.mybatisplus.core.metadata.IPage;
12 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
13 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
14 import org.springframework.stereotype.Service;
15
16 import java.io.Serializable;
17 import java.util.List;
18
19 /**
20  * <p>
21  *  服务实现类
22  * </p>
23  *
24  * @author yyt
25  * @since 2023-10-17
26  */
27 @Service
28 public class OpcuaConfServiceImpl extends ServiceImpl<OpcuaConfMapper, OpcuaConf> implements OpcuaConfService {
29
30     @Override
31     public void add(OpcuaConfParam param){
32         OpcuaConf entity = getEntity(param);
33         this.save(entity);
34     }
35
36     @Override
37     public void delete(OpcuaConfParam param){
38         this.removeById(getKey(param));
39     }
40
41     @Override
42     public void update(OpcuaConfParam param){
43         OpcuaConf oldEntity = getOldEntity(param);
44         OpcuaConf newEntity = getEntity(param);
45         ToolUtil.copyProperties(newEntity, oldEntity);
46         this.updateById(newEntity);
47     }
48
49     @Override
50     public OpcuaConfResult findBySpec(OpcuaConfParam param){
51         return null;
52     }
53
54     @Override
55     public List<OpcuaConfResult> findListBySpec(OpcuaConfParam param){
f4a343 56
YY 57         return this.baseMapper.customList(param);
487b2f 58     }
YY 59
60     @Override
61     public LayuiPageInfo findPageBySpec(OpcuaConfParam param){
62         Page pageContext = getPageContext();
63         IPage page = this.baseMapper.customPageList(pageContext, param);
64         return LayuiPageFactory.createPageInfo(page);
65     }
66
67     private Serializable getKey(OpcuaConfParam param){
68         return param.getId();
69     }
70
71     private Page getPageContext() {
72         return LayuiPageFactory.defaultPage();
73     }
74
75     private OpcuaConf getOldEntity(OpcuaConfParam param) {
76         return this.getById(getKey(param));
77     }
78
79     private OpcuaConf getEntity(OpcuaConfParam param) {
80         OpcuaConf entity = new OpcuaConf();
81         ToolUtil.copyProperties(param, entity);
82         return entity;
83     }
84
85 }