| 12345678910111213141516171819202122 |
- package com.template.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.template.model.pojo.UnlockingCustom;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author ceshi
- * @since 2024-07-26
- */
- @Mapper
- public interface UnlockingCustomMapper extends BaseMapper<UnlockingCustom> {
- List<UnlockingCustom> key(@Param("houseNumberId") String houseNumberId);
- }
|