提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.pre.service; |
潘 |
2 |
|
|
3 |
import com.iailab.module.model.mcs.pre.dto.MmItemOutputDTO; |
5c6007
|
4 |
import com.iailab.module.model.mcs.pre.entity.MmItemOutputEntity; |
7fd198
|
5 |
|
潘 |
6 |
import java.util.List; |
|
7 |
import java.util.Map; |
|
8 |
|
|
9 |
/** |
|
10 |
* @author PanZhibao |
|
11 |
* @date 2021年04月27日 9:13 |
|
12 |
*/ |
5c6007
|
13 |
public interface MmItemOutputService{ |
7fd198
|
14 |
|
69bd5e
|
15 |
void saveMmItemOutput(List<MmItemOutputEntity> mmItemOutput); |
7fd198
|
16 |
|
潘 |
17 |
void update(MmItemOutputEntity mmItemOutput); |
|
18 |
|
|
19 |
List<MmItemOutputDTO> queryList(Map<String, Object> params); |
|
20 |
|
a4891a
|
21 |
MmItemOutputEntity getOutPutById(String outputid); |
7fd198
|
22 |
|
373ab1
|
23 |
List<MmItemOutputEntity> getByItemid(String itemId); |
69bd5e
|
24 |
|
bd9085
|
25 |
MmItemOutputEntity getByItemid(String itemid, String resultstr, Integer resultIndex); |
b368e6
|
26 |
|
69bd5e
|
27 |
void deleteByItemId(String itemId); |
7fd198
|
28 |
} |