提交 | 用户 | 时间
|
532d0b
|
1 |
package com.iailab.module.pms.production.device.service; |
D |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageResult; |
|
4 |
import com.iailab.module.pms.production.device.entity.RunTimeEntity; |
|
5 |
import com.iailab.module.pms.production.device.vo.RunTimePageReqVO; |
|
6 |
|
|
7 |
/** |
|
8 |
* 运行时长统计 |
|
9 |
* |
|
10 |
* @author DongYukun |
|
11 |
* @Description |
|
12 |
* @createTime 2023年01月10日 11:10:00 |
|
13 |
*/ |
|
14 |
public interface RunTimeService{ |
|
15 |
|
|
16 |
String create(RunTimeEntity createEntity); |
|
17 |
|
|
18 |
String update(RunTimeEntity createEntity); |
|
19 |
|
|
20 |
void delete(String id); |
|
21 |
|
|
22 |
RunTimeEntity getInfo(String id); |
|
23 |
|
|
24 |
PageResult<RunTimeEntity> getPage(RunTimePageReqVO PageReqVO); |
|
25 |
} |