廖井涛
2025-10-28 142ac0b41391560d03ecc8246c471bf9b8b1194a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.example.northglasserpclient.service.sd;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.example.northglasserpclient.domain.po.sd.Product;
import com.example.northglasserpclient.domain.po.sd.ProductDetail;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
@Service
public interface IProductDetailService extends IService<ProductDetail> {
 
 
}