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