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);
|
|
}
|