| 12345678910111213141516171819202122232425262728293031323334 |
- package com.ydtech.modules.admin.dao;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.ydtech.modules.admin.model.dto.PcAddressInfoDto;
- import com.ydtech.modules.admin.model.po.SysPcAddressHistory;
- import com.ydtech.modules.admin.model.vo.PcAddressHistoryTimeVo;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * @author Administrator
- * @description 针对表【sys_pc_address_history(pc获取ip地址记录表)】的数据库操作Mapper
- * @createDate 2024-09-02 09:40:08
- * @Entity generator.domain.SysPcAddressHistory
- */
- public interface SysPcAddressHistoryMapper extends BaseMapper<SysPcAddressHistory> {
- List<PcAddressHistoryTimeVo> getPcAddress(@Param("dates") String dates, @Param("source")String source,@Param("collect") List<String> collect,@Param("queryId") String queryId);
- List<SysPcAddressHistory> getPcAddressInfo(@Param("dates") String dates, @Param("source") String source,@Param("collect") List<String> collect,@Param("queryId") String queryId);
- List<PcAddressHistoryTimeVo> getPcAddressSection(@Param("startTime")String startTime, @Param("endTime") String endTime,@Param("source") String source,@Param("collect") List<String> collect,@Param("queryId") String queryId);
- List<SysPcAddressHistory> getPcAddressHistory(@Param("startTime")String startTime, @Param("endTime") String endTime,@Param("source") String source,@Param("collect") List<String> collect,@Param("queryId") String queryId);
- IPage<SysPcAddressHistory> queryAddressHistory(Page page, @Param("dto") PcAddressInfoDto addressInfoDto);
- }
|