Merge remote-tracking branch 'origin/test' into test

This commit is contained in:
joylink_zhangsai 2021-04-13 18:31:09 +08:00
commit 8f0199b6a3
2 changed files with 17 additions and 6 deletions

11
sql/20210413-dukang.sql Normal file
View File

@ -0,0 +1,11 @@
CREATE TABLE `map_group` (
`id` BIGINT(20) NOT NULL AUTO_INCREMENT,
`group_name` VARCHAR(64) NOT NULL,
`group_type` VARCHAR(32) NOT NULL,
`map_ids` VARCHAR(6400) NOT NULL DEFAULT '[]',
PRIMARY KEY (`id`)
)
COMMENT='地图分组'
ENGINE=InnoDB
AUTO_INCREMENT=3
;

View File

@ -20,6 +20,12 @@ import java.util.Base64;
@Service("HuaWeiVoiceService")
public class HuaweiVoiceServiceImpl implements IVoiceService {
@Override
public String synthesis(String message, String per) {
throw BusinessExceptionAssertEnum.THIRD_SERVICE_CALL_EXCEPTION.exception("功能暂未实现");
}
/**
* 华为语音识别配置
*/
@ -28,12 +34,6 @@ public class HuaweiVoiceServiceImpl implements IVoiceService {
private final String region = "cn-north-4";
private final String projectId = "0aada8176180f28c2f34c0196f5394e8";
@Override
public String synthesis(String message, String per) {
throw BusinessExceptionAssertEnum.THIRD_SERVICE_CALL_EXCEPTION.exception("功能暂未实现");
}
@Override
public VoiceRecognitionResult voiceRecognition(MultipartFile file, String lang) {
String filePath;