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-manage/src/main/java/com/supervision/manage/service/HumanManageService.java

34 lines
716 B
Java

package com.supervision.manage.service;
import com.supervision.model.Human;
import com.supervision.vo.manage.HumanReqVo;
import org.springframework.web.multipart.MultipartFile;
import java.util.List;
public interface HumanManageService {
void generateHuman(String humanId, String medicalId) throws Exception;
/**
* 查询数字人列表
* @return
*/
List<Human> queryHumanList();
/**
* 新增数字人
* @param humanReqVo 新增数字人请求
* @return
*/
boolean createHuman(HumanReqVo humanReqVo);
boolean createHuman(MultipartFile imageFile, String medicalId);
boolean updateHuman(HumanReqVo human);
boolean deleteHuman(String id);
}