提交 | 用户 | 时间
|
8a06a4
|
1 |
package com.billion.main.api.service.impl; |
H |
2 |
|
|
3 |
import com.billion.main.api.domain.CollectQualityData; |
|
4 |
import com.billion.main.api.service.ICollectQualityDataService; |
|
5 |
import com.billion.main.da.service.IDaMaterialCollectionService; |
|
6 |
import com.billion.main.da.service.IDaParamCollectionService; |
|
7 |
import com.billion.main.da.service.IDaTightenCollectionService; |
|
8 |
import org.springframework.beans.factory.annotation.Autowired; |
|
9 |
import org.springframework.stereotype.Service; |
|
10 |
import org.springframework.transaction.annotation.Transactional; |
|
11 |
|
|
12 |
/** |
|
13 |
* 物料采集Service业务层处理 |
|
14 |
* |
|
15 |
* @author Billion-Yi |
|
16 |
* @date 2024-11-22 |
|
17 |
*/ |
|
18 |
@Service |
|
19 |
public class CollectQualityDataServiceImpl implements ICollectQualityDataService |
|
20 |
{ |
|
21 |
@Autowired |
|
22 |
private IDaMaterialCollectionService daMaterialCollectionService; |
|
23 |
@Autowired |
|
24 |
private IDaParamCollectionService daParamCollectionService; |
|
25 |
@Autowired |
|
26 |
private IDaTightenCollectionService daTightenCollectionService; |
|
27 |
|
|
28 |
|
|
29 |
@Transactional |
|
30 |
@Override |
|
31 |
public boolean postCollectQualityData(CollectQualityData collectQualityData) { |
|
32 |
|
|
33 |
return false; |
|
34 |
} |
|
35 |
} |