提交 | 用户 | 时间
|
054fb9
|
1 |
package com.iailab.module.model.mdk.schedule; |
潘 |
2 |
|
|
3 |
import com.iailab.module.model.mdk.common.exceptions.ModelInvokeException; |
|
4 |
import com.iailab.module.model.mdk.vo.ScheduleResultVO; |
|
5 |
|
|
6 |
import java.util.Date; |
6c2ff1
|
7 |
import java.util.Map; |
054fb9
|
8 |
|
潘 |
9 |
/** |
|
10 |
* @author PanZhibao |
|
11 |
* @Description |
|
12 |
* @createTime 2024年09月05日 |
|
13 |
*/ |
|
14 |
public interface ScheduleModelHandler { |
|
15 |
|
81ce77
|
16 |
ScheduleResultVO doSchedule(String schemeCode, Date scheduleTime, Map<Integer, Integer> dynamicDataLength, Map<String, String> dynamicSettings) throws ModelInvokeException; |
054fb9
|
17 |
} |