GlobalLocationService.java 1.0 KB

1234567891011121314151617181920212223242526272829
  1. package com.welampiot.service;
  2. import com.welampiot.dto.GlobalLocationDTO;
  3. import com.welampiot.vo.GlobalLocationVO;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. /**
  7. * ClassName: GlobalLocationService
  8. * Package: com.welampiot.service
  9. * Description:
  10. *
  11. * @Author: zhj_Start
  12. * @Create: 2023/3/22 - 17:35
  13. * @Version: v1.0
  14. */
  15. public interface GlobalLocationService {
  16. List<GlobalLocationDTO> getAreaByLevel(Integer version,Integer level);
  17. List<GlobalLocationDTO> getAreaByLevelAndPid(Integer version, Integer level, Integer pid);
  18. List<GlobalLocationDTO> getListByPid(Integer pid);
  19. List<GlobalLocationDTO> getListByPidList(List pids);
  20. List<GlobalLocationDTO> getUserProvinceNav(GlobalLocationVO globalLocationVO);
  21. List<GlobalLocationDTO> getUserCityNav(GlobalLocationVO globalLocationVO);
  22. List<GlobalLocationDTO> getUserAreaNav(GlobalLocationVO globalLocationVO);
  23. GlobalLocationDTO getOneById(@Param("id") Integer id);
  24. GlobalLocationDTO getAreaById(Integer id, Integer version);
  25. }