XiaoRuby
2023-07-19 4fae0a3d70ce519502c8ef17f327daffbe9a44aa
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);
}