廖井涛
2025-10-28 142ac0b41391560d03ecc8246c471bf9b8b1194a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.example.northglasserpclient.service.sd;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.example.northglasserpclient.domain.po.sd.Product;
 
import java.util.List;
import java.util.Map;
 
 
public interface IProductService extends IService<Product> {
 
    List<Product> getProduct();
 
    Map<String, Object> glassPriceComputed(String productId);
 
}