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();
|
}
|