heheng
2025-12-03 430477c7e0777531f22fc18dc8906ea75cdc21d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.gkhy.exam.system.service;
 
import com.gkhy.exam.common.api.CommonPage;
import com.gkhy.exam.common.api.CommonResult;
import com.gkhy.exam.system.domain.ProductService;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * <p>
 * 产品服务实现过程 服务类
 * </p>
 *
 * @author hh
 * @since 2025-12-02 16:59:08
 */
public interface ProductServiceService extends IService<ProductService> {
 
 
    CommonPage selectProductServiceList(ProductService productService);
 
    CommonResult saveProductService(ProductService productService);
 
    CommonResult delProductService(Long  id);
 
}