package com.lxzn.base.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.lxzn.framework.domain.base.DncPassLog; import org.apache.ibatis.annotations.Param; import java.util.Date; /** * @author clown * * @date 2023/11/29 */ public interface DncPassLogMapper extends BaseMapper { /** * 查询某一天最后一条记录 * @param dayTime * @return */ DncPassLog findDateTimeDay(@Param("dayTime")String dayTime); }