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.
15 lines
358 B
Java
15 lines
358 B
Java
package com.supervision.manage.service;
|
|
|
|
|
|
import com.supervision.manage.pojo.vo.MedicalAnswerVideoResVo;
|
|
|
|
import java.io.InputStream;
|
|
|
|
/**
|
|
* @Description: 病例答案视频资源服务
|
|
**/
|
|
public interface AnswerVideoResourceService {
|
|
|
|
MedicalAnswerVideoResVo generationMedicalAnswerVideo(InputStream bookStream, String medicalId) throws Exception;
|
|
}
|