| | |
| | | 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; |
| | |
| | | public interface RawInsProductService extends IService<RawInsProduct> { |
| | | |
| | | /** |
| | | * 更新检验项目 |
| | | * 更新检验项目(填写检验值,检验设备) |
| | | * @param userId |
| | | * @param rawInsProduct |
| | | */ |
| | | void updaterawInsProduct(int userId, RawInsProduct rawInsProduct); |
| | | void updaterawInsProduct(int userId, Integer rpId ,String testValue,Integer devId); |
| | | |
| | | |
| | | /** |
| | | * 只更改设备,之前的检验值删掉 |
| | | * @param rpId |
| | | * @param devId |
| | | */ |
| | | void updateDevByRpId(Integer rpId, Integer devId); |
| | | |
| | | } |
| | | |