SpeechRequest.java
1.16 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.bsth.entity.speech;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.HashMap;
import java.util.Map;
public class SpeechRequest {
/**
* 包含appid
*/
private Map<String, Object> common = new HashMap<>();
/**
* 音频合成参数
*/
private Map<String, Object> business = new HashMap<>();
/**
* 数据、状态参数
*/
private Map<String, Object> data = new HashMap<>();
@JsonIgnore
private boolean completed = false;
public Map<String, Object> getCommon() {
return common;
}
public void setCommon(Map<String, Object> common) {
this.common = common;
}
public Map<String, Object> getBusiness() {
return business;
}
public void setBusiness(Map<String, Object> business) {
this.business = business;
}
public Map<String, Object> getData() {
return data;
}
public void setData(Map<String, Object> data) {
this.data = data;
}
public boolean isCompleted() {
return completed;
}
public void setCompleted(boolean completed) {
this.completed = completed;
}
}