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 com.yuanchu.mom.pojo.vo.RawInsProductVo;
|
|
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);
|
|
}
|