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