提交 | 用户 | 时间
|
a63a4f
|
1 |
package com.iailab.module.data.ind.data.service; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageResult; |
|
4 |
import com.iailab.framework.common.service.BaseService; |
cf757d
|
5 |
import com.iailab.module.data.ind.data.dto.IndDataSetDTO; |
a63a4f
|
6 |
import com.iailab.module.data.ind.data.entity.IndDataSetEntity; |
潘 |
7 |
import com.iailab.module.data.ind.data.vo.IndDataSetPageReqVO; |
|
8 |
import com.iailab.module.data.ind.data.vo.IndDataSetSaveReqVO; |
|
9 |
|
215dbc
|
10 |
import java.util.List; |
潘 |
11 |
|
a63a4f
|
12 |
/** |
潘 |
13 |
* @author PanZhibao |
|
14 |
* @Description |
|
15 |
* @createTime 2024年09月10日 |
|
16 |
*/ |
|
17 |
public interface IndDataSetService extends BaseService<IndDataSetEntity> { |
|
18 |
|
|
19 |
PageResult<IndDataSetEntity> page(IndDataSetPageReqVO reqVO); |
|
20 |
|
|
21 |
void create(IndDataSetSaveReqVO reqVO); |
|
22 |
|
|
23 |
void update(IndDataSetSaveReqVO reqVO); |
|
24 |
|
|
25 |
IndDataSetEntity get(String id); |
|
26 |
|
|
27 |
void delete(String id); |
215dbc
|
28 |
|
潘 |
29 |
List<IndDataSetEntity> list(IndDataSetPageReqVO reqVO); |
cf757d
|
30 |
|
潘 |
31 |
IndDataSetDTO getDet(String id); |
a63a4f
|
32 |
} |