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; /** *

* Mapper 接口 *

* * @author ceshi * @since 2024-07-26 */ @Mapper public interface UnlockingCustomMapper extends BaseMapper { List key(@Param("houseNumberId") String houseNumberId); }