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 { List getPcAddress(@Param("dates") String dates, @Param("source")String source,@Param("collect") List collect,@Param("queryId") String queryId); List getPcAddressInfo(@Param("dates") String dates, @Param("source") String source,@Param("collect") List collect,@Param("queryId") String queryId); List getPcAddressSection(@Param("startTime")String startTime, @Param("endTime") String endTime,@Param("source") String source,@Param("collect") List collect,@Param("queryId") String queryId); List getPcAddressHistory(@Param("startTime")String startTime, @Param("endTime") String endTime,@Param("source") String source,@Param("collect") List collect,@Param("queryId") String queryId); IPage queryAddressHistory(Page page, @Param("dto") PcAddressInfoDto addressInfoDto); }