提交 | 用户 | 时间
|
a6de49
|
1 |
package com.iailab.module.data.point.service; |
H |
2 |
|
|
3 |
import com.iailab.framework.common.service.BaseService; |
|
4 |
import com.iailab.module.data.point.dto.DaMeasurePointDTO; |
|
5 |
import com.iailab.module.data.point.entity.DaMeasurePointEntity; |
|
6 |
|
|
7 |
/** |
|
8 |
* @author PanZhibao |
|
9 |
* @Description |
|
10 |
* @createTime 2024年05月12日 |
|
11 |
*/ |
|
12 |
public interface DaMeasurePointService extends BaseService<DaMeasurePointEntity> { |
|
13 |
|
|
14 |
void add(DaMeasurePointDTO dto, String pointId); |
|
15 |
|
|
16 |
DaMeasurePointDTO getByPoint(String id); |
|
17 |
|
|
18 |
void update(DaMeasurePointDTO dto); |
|
19 |
|
|
20 |
void deleteBatch(String[] ids); |
|
21 |
|
|
22 |
void deleteByPoint(String[] ids); |
|
23 |
} |