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