package com.fdkankan.sale.mapper; import com.fdkankan.sale.entity.RepairTest; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.fdkankan.sale.vo.response.RepairTestVo; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; /** *

* Mapper 接口 *

* * @author * @since 2023-02-20 */ @Mapper public interface IRepairTestMapper extends BaseMapper { RepairTestVo getPassVoByRepairId(@Param("repairId") String repairId); }