| 12345678910111213141516171819 |
- package com.template.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.template.model.pojo.HouseLock;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author ceshi
- * @since 2023-11-21
- */
- @Mapper
- public interface HouseLockMapper extends BaseMapper<HouseLock> {
- HouseLock getHouseNumberId(String houseNumberId);
- }
|