提交 | 用户 | 时间
|
2c65c3
|
1 |
package com.jcdm.main.bs.beatSetting.service.impl; |
W |
2 |
|
|
3 |
import com.jcdm.main.bs.beatSetting.domain.ProductNumTable; |
|
4 |
import com.jcdm.main.bs.beatSetting.mapper.ProductNumTableMapper; |
|
5 |
import com.jcdm.main.bs.beatSetting.service.ProductNumTableService; |
|
6 |
import org.springframework.stereotype.Service; |
|
7 |
|
|
8 |
import javax.annotation.Resource; |
|
9 |
import java.util.List; |
|
10 |
|
|
11 |
@Service |
|
12 |
public class ProductNumTableServiceImpl implements ProductNumTableService { |
|
13 |
|
|
14 |
@Resource |
|
15 |
private ProductNumTableMapper productNumTableMapper; |
|
16 |
|
|
17 |
@Override |
|
18 |
public void insertProductList(List<ProductNumTable> list){ |
|
19 |
productNumTableMapper.insertProductNum(list); |
|
20 |
} |
|
21 |
|
|
22 |
@Override |
|
23 |
public void updateProductNum(ProductNumTable productNumTable) { |
|
24 |
productNumTableMapper.updateProductNum(productNumTable); |
|
25 |
} |
|
26 |
|
|
27 |
@Override |
|
28 |
public List<ProductNumTable> selectProductList(ProductNumTable productNumTable) { |
|
29 |
return productNumTableMapper.selectProductNum(productNumTable); |
|
30 |
} |
|
31 |
|
|
32 |
|
|
33 |
} |