You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
287 B
18 lines
287 B
package com.bw.qanda.service;
|
|
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 问答实际处理接口
|
|
* @author jian.mao
|
|
* @date 2025年3月31日
|
|
* @description
|
|
*/
|
|
public interface QandATaskService {
|
|
|
|
/**
|
|
* 问答执行方法
|
|
* @param task
|
|
*/
|
|
public void qandA(Map<String, Object> task);
|
|
}
|