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