提交 | 用户 | 时间
|
532d0b
|
1 |
package com.iailab.module.pms.production.wash.service; |
D |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageResult; |
|
4 |
import com.iailab.module.pms.production.wash.vo.HourVolumePageReqVO; |
|
5 |
import com.iailab.module.pms.production.wash.entity.HourVolumeEntity; |
|
6 |
|
|
7 |
/** |
|
8 |
* @author DongYukun |
|
9 |
* @Description |
|
10 |
* @createTime 2024年12月03日 |
|
11 |
*/ |
|
12 |
public interface HourVolumeService { |
|
13 |
|
|
14 |
String create(HourVolumeEntity createEntity); |
|
15 |
|
|
16 |
String update(HourVolumeEntity createEntity); |
|
17 |
|
|
18 |
void delete(String id); |
|
19 |
|
|
20 |
HourVolumeEntity getInfo(String id); |
|
21 |
|
|
22 |
PageResult<HourVolumeEntity> getPage(HourVolumePageReqVO PageReqVO); |
|
23 |
} |