1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.welampiot.dao;
- 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: GlobalLocationDao
- * Package: com.welampiot.dao
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/3/22 - 17:30
- * @Version: v1.0
- */
- public interface GlobalLocationDao {
- List<GlobalLocationDTO> getAreaByLevel(@Param("version") Integer version, @Param("level") Integer level);
- List<GlobalLocationDTO> getAreaByLevelAndPid(@Param("version") Integer version, @Param("level") Integer level, @Param("pid") Integer pid);
- List<GlobalLocationDTO> getListByPid(@Param("pid") Integer pid);
- List<GlobalLocationDTO> getListByPidList(@Param("pids") List pids);
- List<GlobalLocationDTO> getUserProvinceNav(GlobalLocationVO globalLocationVO);
- GlobalLocationDTO getOneById(@Param("id") Integer id);
- GlobalLocationDTO getGlobalLocationDTOById(@Param("id") Integer id, @Param("version") Integer version);
- List<GlobalLocationDTO> getLocationListByPid(@Param("pid") Integer pid, @Param("version") Integer version);
- List<GlobalLocationDTO> getGlobalList(@Param("level") Integer level,@Param("version") Integer version);
- Integer getAreaTimezoneById(@Param("id") Integer id);
- List<GlobalLocationDTO> getAreaListByPid(@Param("pid") Integer pid, @Param("version") Integer version);
- List<GlobalLocationDTO> getCityListByPid(@Param("pid") Integer pid, @Param("version") Integer version);
- List<GlobalLocationDTO> getOnlyOneLevelList(@Param("level") Integer level,@Param("version") Integer version);
- List<GlobalLocationDTO> getCountryOfSectionList(@Param("level") Integer level,@Param("version") Integer version);
- List<GlobalLocationDTO> getAreaLampCountList(GlobalLocationVO vo);
- List<GlobalLocationDTO> getAreaLampPoleCountList(GlobalLocationVO vo);
- List<GlobalLocationDTO> getCityLampCountList(GlobalLocationVO vo);
- List<GlobalLocationDTO> getCityLampPoleCountList(GlobalLocationVO vo);
- GlobalLocationDTO getDataByDto(GlobalLocationDTO dto);
- List<GlobalLocationDTO> getAreaList(GlobalLocationDTO dto);
- GlobalLocationDTO getTimeZoneData(SectionDTO dto);
- GlobalLocationDTO getLocationBySectionId(@Param("sectionId") Integer sectionId);
- List<GlobalLocationDTO> getProvinceCityNavByBaseVO(BaseVO baseVO);
- List<GlobalLocationDTO> getAreaSectionNavByBaseVO(BaseVO baseVO);
- }
|