package com.artfess.rescue.external.manager;

import com.artfess.rescue.external.model.BizDataReceive;
import com.artfess.base.manager.BaseManager;

import java.time.LocalDate;
import java.time.LocalDateTime;

/**
 * 第三方接收数据表 服务类
 *
 * @author 系统管理员
 * @company 阿特菲斯信息技术有限公司
 * @since 2025-04-18
 */
public interface BizDataReceiveManager extends BaseManager<BizDataReceive> {
    /**
     * 重试数据传输失败的数据
     *
     * @param localDate 指定时间
     */
    void RetryReceive(LocalDate localDate) throws Exception;

    /**
     * 重试数据传输失败的数据
     *
     * @param
     */
    void RetryReceive(LocalDateTime startDate,LocalDateTime endDate) throws Exception;
}
