UnlockingCustomMapper.java 495 B

12345678910111213141516171819202122
  1. package com.template.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.template.model.pojo.UnlockingCustom;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. /**
  8. * <p>
  9. * Mapper 接口
  10. * </p>
  11. *
  12. * @author ceshi
  13. * @since 2024-07-26
  14. */
  15. @Mapper
  16. public interface UnlockingCustomMapper extends BaseMapper<UnlockingCustom> {
  17. List<UnlockingCustom> key(@Param("houseNumberId") String houseNumberId);
  18. }