You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
virtual-patient/virtual-patient-web/src/main/java/com/supervision/service/AskService.java

15 lines
352 B
Java

2 years ago
package com.supervision.service;
import com.supervision.pojo.vo.TalkVideoReqVO;
import com.supervision.pojo.vo.TalkVideoTtsResultResVO;
2 years ago
import org.springframework.web.multipart.MultipartFile;
public interface AskService {
String receiveVoiceFile(MultipartFile file);
TalkVideoTtsResultResVO talkByVideoAndTts(TalkVideoReqVO talkReqVO);
2 years ago
}