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 queryHumanList(); /** * 新增数字人 * @param humanReqVo 新增数字人请求 * @return */ boolean createHuman(HumanReqVo humanReqVo); boolean createHuman(MultipartFile imageFile, String medicalId); boolean updateHuman(HumanReqVo human); boolean deleteHuman(String id); }