提交 | 用户 | 时间
|
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.entity.DaMathPointEntity; |
|
5 |
import com.iailab.module.data.point.dto.DaMathPointDTO; |
|
6 |
|
|
7 |
/** |
|
8 |
* @author PanZhibao |
|
9 |
* @Description |
|
10 |
* @createTime 2024年05月12日 |
|
11 |
*/ |
|
12 |
public interface DaMathPointService extends BaseService<DaMathPointEntity> { |
|
13 |
|
|
14 |
void add(DaMathPointDTO dto, String pointId); |
|
15 |
|
01d6f8
|
16 |
void add(String expression, String pointId); |
潘 |
17 |
|
a6de49
|
18 |
DaMathPointDTO getByPoint(String pointId); |
H |
19 |
|
|
20 |
void update(DaMathPointDTO dto); |
|
21 |
|
|
22 |
void deleteBatch(String[] ids); |
|
23 |
|
|
24 |
void deleteByPoint(String[] ids); |
|
25 |
} |