hyingbo
7 天以前 418d29b85d943f57b5600d84acf9cf6ca0ce9173
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.modules.dnc.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.dnc.entity.DncPassLog;
 
/**
 * @author clown
 * * @date 2023/11/29
 */
public interface IDncPassLogService extends IService<DncPassLog> {
 
    /**
     * 查询某一天的数据
     * @param dateDay
     * @return
     */
    DncPassLog findDayTime(String dateDay);
 
}