IProjectSceneGpsMapper.java 421 B

123456789101112131415161718192021
  1. package com.fdkankan.manage_jp.mapper;
  2. import com.fdkankan.manage_jp.entity.ProjectSceneGps;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.util.List;
  6. /**
  7. * <p>
  8. * Mapper 接口
  9. * </p>
  10. *
  11. * @author
  12. * @since 2024-08-16
  13. */
  14. @Mapper
  15. public interface IProjectSceneGpsMapper extends BaseMapper<ProjectSceneGps> {
  16. List<String> getNotGpsScene();
  17. }