123456789101112131415161718192021 |
- package com.fdkankan.manage_jp.mapper;
- import com.fdkankan.manage_jp.entity.ProjectSceneGps;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- import java.util.List;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author
- * @since 2024-08-16
- */
- @Mapper
- public interface IProjectSceneGpsMapper extends BaseMapper<ProjectSceneGps> {
- List<String> getNotGpsScene();
- }
|