HouseLockMapper.java 386 B

12345678910111213141516171819
  1. package com.template.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.template.model.pojo.HouseLock;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * <p>
  7. * Mapper 接口
  8. * </p>
  9. *
  10. * @author ceshi
  11. * @since 2023-11-21
  12. */
  13. @Mapper
  14. public interface HouseLockMapper extends BaseMapper<HouseLock> {
  15. HouseLock getHouseNumberId(String houseNumberId);
  16. }