IRepairTestMapper.java 506 B

123456789101112131415161718192021
  1. package com.fdkankan.sale.mapper;
  2. import com.fdkankan.sale.entity.RepairTest;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import com.fdkankan.sale.vo.response.RepairTestVo;
  5. import org.apache.ibatis.annotations.Mapper;
  6. import org.apache.ibatis.annotations.Param;
  7. /**
  8. * <p>
  9. * Mapper 接口
  10. * </p>
  11. *
  12. * @author
  13. * @since 2023-02-20
  14. */
  15. @Mapper
  16. public interface IRepairTestMapper extends BaseMapper<RepairTest> {
  17. RepairTestVo getPassVoByRepairId(@Param("repairId") String repairId);
  18. }