1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.welampiot.service;
- import com.welampiot.dto.GlobalLocationDTO;
- import com.welampiot.dto.SectionDTO;
- import com.welampiot.vo.BaseVO;
- 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 level, Integer version);
- GlobalLocationDTO getDataByDto(GlobalLocationDTO dto);
- List<GlobalLocationDTO> getAreaList(GlobalLocationDTO dto);
- GlobalLocationDTO getTimeZoneData(SectionDTO dto);
- GlobalLocationDTO getLocationBySectionId(Integer sectionId);
- List<GlobalLocationDTO> getProvinceCityNavByBaseVO(BaseVO baseVO);
- List<GlobalLocationDTO> getAreaSectionNavByBaseVO(BaseVO baseVO);
- }
|