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