package com.gkhy.exam.system.mapper; import com.gkhy.exam.system.domain.ProductService; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** *

* 产品服务实现过程 Mapper 接口 *

* * @author hh * @since 2025-12-02 16:59:08 */ @Mapper public interface ProductServiceMapper extends BaseMapper { List selectProductServiceList(ProductService productService); }