lyh
13 小时以前 78aeb8a8c97a884a640d46755e4be706bde48b7d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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<DncPassLog> {
    /**
     * 查询某一天最后一条记录
     * @param dayTime
     * @return
     */
    DncPassLog findDateTimeDay(@Param("dayTime")String dayTime);
}