Merge remote-tracking branch 'origin/test' into test
This commit is contained in:
commit
8f0199b6a3
|
@ -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
|
||||||
|
;
|
|
@ -20,6 +20,12 @@ import java.util.Base64;
|
||||||
@Service("HuaWeiVoiceService")
|
@Service("HuaWeiVoiceService")
|
||||||
public class HuaweiVoiceServiceImpl implements IVoiceService {
|
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 region = "cn-north-4";
|
||||||
private final String projectId = "0aada8176180f28c2f34c0196f5394e8";
|
private final String projectId = "0aada8176180f28c2f34c0196f5394e8";
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String synthesis(String message, String per) {
|
|
||||||
throw BusinessExceptionAssertEnum.THIRD_SERVICE_CALL_EXCEPTION.exception("功能暂未实现");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public VoiceRecognitionResult voiceRecognition(MultipartFile file, String lang) {
|
public VoiceRecognitionResult voiceRecognition(MultipartFile file, String lang) {
|
||||||
String filePath;
|
String filePath;
|
||||||
|
|
Loading…
Reference in New Issue