lyh
2 天以前 2ab86210fb27787cb1be8976286b9b827f90997f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.lxzn.base.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.lxzn.framework.domain.base.DncPassLog;
 
import java.util.Date;
 
/**
 * @author clown
 * * @date 2023/11/29
 */
public interface IDncPassLogService extends IService<DncPassLog> {
 
    /**
     * 查询某一天的数据
     * @param dateDay
     * @return
     */
    DncPassLog findDayTime(String dateDay);
//
//    /**
//     * 发送文件
//     */
//    void fileClientTxtOrNc();
//
//    /**
//     * 删除固定路径下超时文件
//     * @return
//     */
//    void deleteNcSendFile();
}