1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ycl.service.caseHandler;
|
| import com.ycl.dto.caseHandler.CheckParam;
|
| import java.util.List;
|
| /**
| * <p>
| * 审核处理
| * </p>
| *
| * @author mg
| * @since 2022-10-02
| */
| public interface ICheckHandleService {
| Boolean check(CheckParam checkParam);
|
| Boolean checkBatch(List<Long> ids, Long userId);
| }
|
|