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

* 外包产品名称 Mapper 接口 *

* * @author hh * @since 2025-08-13 09:16:37 */ @Mapper public interface OutsourcedProductMapper extends BaseMapper { List getOutsourcedProductList(OutsourcedProduct outsourcedProduct); }