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
| 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);
|
| /**
| * 发送文件
| */
| void fileClientTxtOrNc();
|
| /**
| * 删除固定路径下超时文件
| * @return
| */
| void deleteNcSendFile();
| }
|
|