浏览代码

fix

master
winter 1年前
父节点
当前提交
17951164f8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      suimangService/src/main/java/com/iformall/service/sm/impl/VoiceInfoServiceImpl.java

+ 1
- 1
suimangService/src/main/java/com/iformall/service/sm/impl/VoiceInfoServiceImpl.java 查看文件

@@ -41,7 +41,7 @@ public class VoiceInfoServiceImpl implements VoiceInfoService {
@Override
public List<VoiceInfo> chooseType(Long id) {
List<VoiceInfo> voiceInfos = voiceMapper.selectList(
new LambdaQueryWrapper<VoiceInfo>().eq(VoiceInfo::getLanguageId, id).orderByAsc(VoiceInfo::getAgeType).orderByAsc(VoiceInfo::getDisplayName));
new LambdaQueryWrapper<VoiceInfo>().eq(VoiceInfo::getLanguageId, id).eq(VoiceInfo::getVoiceType, "Neural").orderByAsc(VoiceInfo::getAgeType).orderByAsc(VoiceInfo::getDisplayName));
voiceInfos.forEach(x -> {
if (StringUtils.isNotEmpty(x.getStyleList())) {
List<String> strings = JSON.parseArray(x.getStyleList(), String.class);


正在加载...
取消
保存