20 lines
459 B
Java
20 lines
459 B
Java
package com.celnet.datadump.service;
|
|
|
|
import com.celnet.datadump.param.DataCheckDeletedParam;
|
|
import com.xxl.job.core.biz.model.ReturnT;
|
|
|
|
/**
|
|
* @author Red
|
|
* @description
|
|
* @date 2022/12/06
|
|
*/
|
|
public interface DataCheckDeletedService {
|
|
/**
|
|
* 检查删除数据问题
|
|
* @param param 参数
|
|
* @return returnT
|
|
* @throws Throwable throwable
|
|
*/
|
|
ReturnT<String> checkDeletedData(DataCheckDeletedParam param) throws Throwable;
|
|
}
|