1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package com.yuanchu.mom.service;
|
| import com.baomidou.mybatisplus.core.metadata.IPage;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.yuanchu.mom.pojo.RawInsProduct;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * 原材料申请单中的项目列表(RawInsProduct)表服务接口
| *
| * @author zss
| * @since 2023-08-01 13:52:31
| */
| public interface RawInsProductService extends IService<RawInsProduct> {
|
| /**
| * 更新检验项目(填写检验值,检验设备)
| * @param userId
| */
| void updaterawInsProduct(int userId, Integer rpId ,String testValue,Integer devId);
|
|
| /**
| * 只更改设备,之前的检验值删掉
| * @param rpId
| * @param devId
| */
| void updateDevByRpId(Integer rpId, Integer devId);
| }
|
|