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