123456789101112131415161718192021222324252627282930313233343536 |
- package com.welampiot.service;
- import com.welampiot.dto.GlobalLocationDTO;
- import com.welampiot.vo.GlobalLocationVO;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * ClassName: GlobalLocationService
- * Package: com.welampiot.service
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/3/22 - 17:35
- * @Version: v1.0
- */
- public interface GlobalLocationService {
- List<GlobalLocationDTO> getAreaByLevel(Integer version,Integer level);
- List<GlobalLocationDTO> getAreaByLevelAndPid(Integer version, Integer level, Integer pid);
- List<GlobalLocationDTO> getListByPid(Integer pid);
- List<GlobalLocationDTO> getListByPidList(List pids);
- List<GlobalLocationDTO> getUserProvinceNav(GlobalLocationVO globalLocationVO);
- List<GlobalLocationDTO> getUserCityNav(GlobalLocationVO globalLocationVO);
- List<GlobalLocationDTO> getUserAreaNav(GlobalLocationVO globalLocationVO);
- GlobalLocationDTO getOneById(@Param("id") Integer id);
- GlobalLocationDTO getGlobalLocationDTOById(Integer id, Integer version);
- List<GlobalLocationDTO> getLocationListByPid(Integer pid, Integer version);
- List<GlobalLocationDTO> getGlobalList(Integer level, Integer version);
- Integer getAreaTimezoneById(Integer id);
- List<GlobalLocationDTO> getAreaListByPid(Integer pid, Integer version);
- List<GlobalLocationDTO> getCityListByPid(Integer pid, Integer version);
- List<GlobalLocationDTO> getOnlyOneLevelList(Integer level, Integer version);
- List<GlobalLocationDTO> getCountryOfSectionList(Integer version);
- }
|