提交 | 用户 | 时间
|
e57a89
|
1 |
package com.jcdm.main.bs.productBomChild.service.impl; |
懒 |
2 |
|
|
3 |
import java.util.List; |
|
4 |
|
0ce25f
|
5 |
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
e57a89
|
6 |
import com.jcdm.main.bs.productBomChild.domain.BsProductBomChildInfo; |
懒 |
7 |
import com.jcdm.main.bs.productBomChild.mapper.BsProductBomChildInfoMapper; |
|
8 |
import com.jcdm.main.bs.productBomChild.service.IBsProductBomChildInfoService; |
|
9 |
import org.springframework.beans.factory.annotation.Autowired; |
|
10 |
import org.springframework.stereotype.Service; |
|
11 |
|
|
12 |
/** |
|
13 |
* 基础BOM子信息Service业务层处理 |
|
14 |
* |
|
15 |
* @author yyt |
|
16 |
* @date 2023-12-11 |
|
17 |
*/ |
|
18 |
@Service |
0ce25f
|
19 |
public class BsProductBomChildInfoServiceImpl extends ServiceImpl<BsProductBomChildInfoMapper,BsProductBomChildInfo> implements IBsProductBomChildInfoService |
e57a89
|
20 |
{ |
懒 |
21 |
@Autowired |
|
22 |
private BsProductBomChildInfoMapper bsProductBomChildInfoMapper; |
|
23 |
|
|
24 |
/** |
|
25 |
* 查询基础BOM子信息 |
|
26 |
* |
|
27 |
* @param id 基础BOM子信息主键 |
|
28 |
* @return 基础BOM子信息 |
|
29 |
*/ |
|
30 |
@Override |
|
31 |
public BsProductBomChildInfo selectBsProductBomChildInfoById(Long id) |
|
32 |
{ |
|
33 |
return bsProductBomChildInfoMapper.selectBsProductBomChildInfoById(id); |
|
34 |
} |
|
35 |
|
|
36 |
/** |
|
37 |
* 查询基础BOM子信息列表 |
|
38 |
* |
|
39 |
* @param bsProductBomChildInfo 基础BOM子信息 |
|
40 |
* @return 基础BOM子信息 |
|
41 |
*/ |
|
42 |
@Override |
|
43 |
public List<BsProductBomChildInfo> selectBsProductBomChildInfoList(BsProductBomChildInfo bsProductBomChildInfo) |
|
44 |
{ |
|
45 |
return bsProductBomChildInfoMapper.selectBsProductBomChildInfoList(bsProductBomChildInfo); |
|
46 |
} |
|
47 |
|
|
48 |
/** |
|
49 |
* 新增基础BOM子信息 |
|
50 |
* |
|
51 |
* @param bsProductBomChildInfo 基础BOM子信息 |
|
52 |
* @return 结果 |
|
53 |
*/ |
|
54 |
@Override |
|
55 |
public int insertBsProductBomChildInfo(BsProductBomChildInfo bsProductBomChildInfo) |
|
56 |
{ |
|
57 |
return bsProductBomChildInfoMapper.insertBsProductBomChildInfo(bsProductBomChildInfo); |
|
58 |
} |
|
59 |
|
|
60 |
/** |
|
61 |
* 修改基础BOM子信息 |
|
62 |
* |
|
63 |
* @param bsProductBomChildInfo 基础BOM子信息 |
|
64 |
* @return 结果 |
|
65 |
*/ |
|
66 |
@Override |
|
67 |
public int updateBsProductBomChildInfo(BsProductBomChildInfo bsProductBomChildInfo) |
|
68 |
{ |
|
69 |
return bsProductBomChildInfoMapper.updateBsProductBomChildInfo(bsProductBomChildInfo); |
|
70 |
} |
|
71 |
|
|
72 |
/** |
|
73 |
* 批量删除基础BOM子信息 |
|
74 |
* |
|
75 |
* @param ids 需要删除的基础BOM子信息主键 |
|
76 |
* @return 结果 |
|
77 |
*/ |
|
78 |
@Override |
|
79 |
public int deleteBsProductBomChildInfoByIds(Long[] ids) |
|
80 |
{ |
|
81 |
return bsProductBomChildInfoMapper.deleteBsProductBomChildInfoByIds(ids); |
|
82 |
} |
|
83 |
|
|
84 |
/** |
|
85 |
* 删除基础BOM子信息信息 |
|
86 |
* |
|
87 |
* @param id 基础BOM子信息主键 |
|
88 |
* @return 结果 |
|
89 |
*/ |
|
90 |
@Override |
|
91 |
public int deleteBsProductBomChildInfoById(Long id) |
|
92 |
{ |
|
93 |
return bsProductBomChildInfoMapper.deleteBsProductBomChildInfoById(id); |
|
94 |
} |
|
95 |
} |