| 1234567891011121314151617181920212223242526272829 |
- 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 getAreaById(Integer id, Integer version);
- }
|