123456789101112131415161718192021 |
- 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;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author
- * @since 2023-02-20
- */
- @Mapper
- public interface IRepairTestMapper extends BaseMapper<RepairTest> {
- RepairTestVo getPassVoByRepairId(@Param("repairId") String repairId);
- }
|