standard-server/src/main/java/com/yuanchu/limslaboratory/mapper/ProductMapper.java
@@ -3,6 +3,8 @@ import com.yuanchu.limslaboratory.pojo.Product; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import java.util.List; import java.util.Map; /** @@ -15,5 +17,7 @@ */ public interface ProductMapper extends BaseMapper<Product> { List<Product> selectProductByMaterialId(int materialId); Map<String, Object> getProductInformation(Integer productId); }