12345678910111213141516171819 |
- package com.szwl.mapper;
- import com.szwl.model.entity.TLocationCheck;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import java.util.List;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author wuhs
- * @since 2023-12-25
- */
- public interface TLocationCheckMapper extends BaseMapper<TLocationCheck> {
- List<TLocationCheck> selectNotNullIp();
- }
|