提交 | 用户 | 时间
|
fd2207
|
1 |
package com.jcdm.main.bs.productBom.service.impl; |
懒 |
2 |
|
|
3 |
import java.util.List; |
|
4 |
import com.jcdm.common.utils.DateUtils; |
|
5 |
import com.jcdm.main.bs.productBom.domain.BsProductBomInfo; |
|
6 |
import com.jcdm.main.bs.productBom.mapper.BsProductBomInfoMapper; |
|
7 |
import com.jcdm.main.bs.productBom.service.IBsProductBomInfoService; |
|
8 |
import org.springframework.beans.factory.annotation.Autowired; |
|
9 |
import org.springframework.stereotype.Service; |
|
10 |
|
|
11 |
|
|
12 |
/** |
|
13 |
* 基础BOMService业务层处理 |
|
14 |
* |
|
15 |
* @author yyt |
|
16 |
* @date 2023-12-11 |
|
17 |
*/ |
|
18 |
@Service |
|
19 |
public class BsProductBomInfoServiceImpl implements IBsProductBomInfoService |
|
20 |
{ |
|
21 |
@Autowired |
|
22 |
private BsProductBomInfoMapper bsProductBomInfoMapper; |
|
23 |
|
|
24 |
/** |
|
25 |
* 查询基础BOM |
|
26 |
* |
|
27 |
* @param id 基础BOM主键 |
|
28 |
* @return 基础BOM |
|
29 |
*/ |
|
30 |
@Override |
|
31 |
public BsProductBomInfo selectBsProductBomInfoById(Long id) |
|
32 |
{ |
|
33 |
return bsProductBomInfoMapper.selectBsProductBomInfoById(id); |
|
34 |
} |
|
35 |
|
|
36 |
/** |
|
37 |
* 查询基础BOM列表 |
|
38 |
* |
|
39 |
* @param bsProductBomInfo 基础BOM |
|
40 |
* @return 基础BOM |
|
41 |
*/ |
|
42 |
@Override |
|
43 |
public List<BsProductBomInfo> selectBsProductBomInfoList(BsProductBomInfo bsProductBomInfo) |
|
44 |
{ |
|
45 |
return bsProductBomInfoMapper.selectBsProductBomInfoList(bsProductBomInfo); |
|
46 |
} |
|
47 |
|
|
48 |
/** |
|
49 |
* 新增基础BOM |
|
50 |
* |
|
51 |
* @param bsProductBomInfo 基础BOM |
|
52 |
* @return 结果 |
|
53 |
*/ |
|
54 |
@Override |
|
55 |
public int insertBsProductBomInfo(BsProductBomInfo bsProductBomInfo) |
|
56 |
{ |
|
57 |
bsProductBomInfo.setCreateTime(DateUtils.getNowDate()); |
|
58 |
return bsProductBomInfoMapper.insertBsProductBomInfo(bsProductBomInfo); |
|
59 |
} |
|
60 |
|
|
61 |
/** |
|
62 |
* 修改基础BOM |
|
63 |
* |
|
64 |
* @param bsProductBomInfo 基础BOM |
|
65 |
* @return 结果 |
|
66 |
*/ |
|
67 |
@Override |
|
68 |
public int updateBsProductBomInfo(BsProductBomInfo bsProductBomInfo) |
|
69 |
{ |
|
70 |
bsProductBomInfo.setUpdateTime(DateUtils.getNowDate()); |
|
71 |
return bsProductBomInfoMapper.updateBsProductBomInfo(bsProductBomInfo); |
|
72 |
} |
|
73 |
|
|
74 |
/** |
|
75 |
* 批量删除基础BOM |
|
76 |
* |
|
77 |
* @param ids 需要删除的基础BOM主键 |
|
78 |
* @return 结果 |
|
79 |
*/ |
|
80 |
@Override |
|
81 |
public int deleteBsProductBomInfoByIds(Long[] ids) |
|
82 |
{ |
|
83 |
return bsProductBomInfoMapper.deleteBsProductBomInfoByIds(ids); |
|
84 |
} |
|
85 |
|
|
86 |
/** |
|
87 |
* 删除基础BOM信息 |
|
88 |
* |
|
89 |
* @param id 基础BOM主键 |
|
90 |
* @return 结果 |
|
91 |
*/ |
|
92 |
@Override |
|
93 |
public int deleteBsProductBomInfoById(Long id) |
|
94 |
{ |
|
95 |
return bsProductBomInfoMapper.deleteBsProductBomInfoById(id); |
|
96 |
} |
|
97 |
} |