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
292 B
Java
15 lines
292 B
Java
1 year ago
|
package com.supervision.manage.service;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @Description: 病例答案视频资源服务
|
||
|
**/
|
||
|
public interface AnswerVideoResourceService {
|
||
|
|
||
|
/**
|
||
|
* 预生成病例答案视频
|
||
|
* @param medicalId 疾病id
|
||
|
*/
|
||
|
void preGenerationMedicalAnswerVideo(String medicalId);
|
||
|
}
|