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.
34 lines
716 B
Java
34 lines
716 B
Java
6 months ago
|
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);
|
||
|
}
|