package com.ycl.service.caseHandler; import com.ycl.dto.caseHandler.CheckParam; import java.util.List; /** *

* 审核处理 *

* * @author mg * @since 2022-10-02 */ public interface ICheckHandleService { Boolean check(CheckParam checkParam); Boolean checkBatch(List ids, Long userId); }