提交 | 用户 | 时间
|
9d822f
|
1 |
package com.billion.main.da.service; |
A |
2 |
|
|
3 |
import java.util.List; |
|
4 |
|
|
5 |
import com.baomidou.mybatisplus.extension.service.IService; |
|
6 |
import com.billion.main.da.domain.DaMaterialCollection; |
|
7 |
|
|
8 |
/** |
|
9 |
* 物料采集Service接口 |
|
10 |
* |
|
11 |
* @author Billion-Yi |
|
12 |
* @date 2024-11-22 |
|
13 |
*/ |
|
14 |
public interface IDaMaterialCollectionService extends IService<DaMaterialCollection> |
|
15 |
{ |
|
16 |
/** |
|
17 |
* 查询物料采集 |
|
18 |
* |
|
19 |
* @param id 物料采集主键 |
|
20 |
* @return 物料采集 |
|
21 |
*/ |
|
22 |
public DaMaterialCollection selectDaMaterialCollectionById(Long id); |
|
23 |
|
|
24 |
/** |
|
25 |
* 查询物料采集列表 |
|
26 |
* |
|
27 |
* @param daMaterialCollection 物料采集 |
|
28 |
* @return 物料采集集合 |
|
29 |
*/ |
|
30 |
public List<DaMaterialCollection> selectDaMaterialCollectionList(DaMaterialCollection daMaterialCollection); |
|
31 |
|
|
32 |
/** |
|
33 |
* 新增物料采集 |
|
34 |
* |
|
35 |
* @param daMaterialCollection 物料采集 |
|
36 |
* @return 结果 |
|
37 |
*/ |
|
38 |
public void insertDaMaterialCollection(DaMaterialCollection daMaterialCollection); |
|
39 |
|
|
40 |
/** |
|
41 |
* 修改物料采集 |
|
42 |
* |
|
43 |
* @param daMaterialCollection 物料采集 |
|
44 |
* @return 结果 |
|
45 |
*/ |
|
46 |
public int updateDaMaterialCollection(DaMaterialCollection daMaterialCollection); |
|
47 |
|
|
48 |
/** |
|
49 |
* 批量删除物料采集 |
|
50 |
* |
|
51 |
* @param ids 需要删除的物料采集主键集合 |
|
52 |
* @return 结果 |
|
53 |
*/ |
|
54 |
public int deleteDaMaterialCollectionByIds(Long[] ids); |
|
55 |
|
|
56 |
/** |
|
57 |
* 删除物料采集信息 |
|
58 |
* |
|
59 |
* @param id 物料采集主键 |
|
60 |
* @return 结果 |
|
61 |
*/ |
|
62 |
public int deleteDaMaterialCollectionById(Long id); |
|
63 |
} |