1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| package org.ruoyi.system.response;
|
| import lombok.Data;
|
| /**
| * 描述:语音角色风格列表
| *
| * @author ageerle@163.com
| * date 2024/4/27
| */
| @Data
| public class PromptResponse {
|
| /**
| * 角色风格 ID
| */
| private String id;
|
| /**
| * 角色风格名称
| */
| private String name;
|
| /**
| * 角色风格样本音频 URL
| */
| private String promptOriginAudioStorageUrl;
|
| }
|
|