admin
2024-01-09 66b57b7f650d7f61ac2859a2cbe652cd4becb523
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.om.productionOrderRecords.service.impl;
2
3 import cn.stylefeng.guns.base.pojo.page.LayuiPageFactory;
4 import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
5 import cn.stylefeng.guns.modular.om.productionOrderRecords.entity.ProductionOrderRecords;
6 import cn.stylefeng.guns.modular.om.productionOrderRecords.mapper.ProductionOrderRecordsMapper;
7 import cn.stylefeng.guns.modular.om.productionOrderRecords.model.params.ProductionOrderRecordsParam;
8 import cn.stylefeng.guns.modular.om.productionOrderRecords.model.result.ProductionOrderRecordsResult;
9 import  cn.stylefeng.guns.modular.om.productionOrderRecords.service.ProductionOrderRecordsService;
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 cl
25  * @since 2022-10-27
26  */
27 @Service
28 public class ProductionOrderRecordsServiceImpl extends ServiceImpl<ProductionOrderRecordsMapper, ProductionOrderRecords> implements ProductionOrderRecordsService {
29
30     @Override
31     public void add(ProductionOrderRecordsParam param){
32         ProductionOrderRecords entity = getEntity(param);
33         this.save(entity);
34     }
35
36     @Override
37     public void delete(ProductionOrderRecordsParam param){
38         this.removeById(getKey(param));
39     }
40
41     @Override
42     public void update(ProductionOrderRecordsParam param){
43         ProductionOrderRecords oldEntity = getOldEntity(param);
44         ProductionOrderRecords newEntity = getEntity(param);
45         ToolUtil.copyProperties(newEntity, oldEntity);
46         this.updateById(newEntity);
47     }
48
49     @Override
50     public ProductionOrderRecordsResult findBySpec(ProductionOrderRecordsParam param){
51         return null;
52     }
53
54     @Override
55     public List<ProductionOrderRecordsResult> findListBySpec(ProductionOrderRecordsParam param){
66b57b 56         return this.baseMapper.customList(param);
71e81e 57     }
58
59     @Override
60     public LayuiPageInfo findPageBySpec(ProductionOrderRecordsParam param){
61         Page pageContext = getPageContext();
62         IPage page = this.baseMapper.customPageList(pageContext, param);
63         return LayuiPageFactory.createPageInfo(page);
64     }
65
66     private Serializable getKey(ProductionOrderRecordsParam param){
67         return param.getId();
68     }
69
70     private Page getPageContext() {
71         return LayuiPageFactory.defaultPage();
72     }
73
74     private ProductionOrderRecords getOldEntity(ProductionOrderRecordsParam param) {
75         return this.getById(getKey(param));
76     }
77
78     private ProductionOrderRecords getEntity(ProductionOrderRecordsParam param) {
79         ProductionOrderRecords entity = new ProductionOrderRecords();
80         ToolUtil.copyProperties(param, entity);
81         return entity;
82     }
83
84 }