File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
src/main/java/com/xiaozhi Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ public class SysRole extends Base {
2424
2525 private Integer modelId ;
2626
27+ private String modelName ;
28+
2729 private Integer sttId ;
2830
2931 private Double temperature ;
@@ -52,7 +54,7 @@ public SysRole setTtsId(Integer ttsId) {
5254 return this ;
5355 }
5456
55- public Integer getModelId () {
57+ public Integer getModelId () {
5658 return modelId ;
5759 }
5860
@@ -61,6 +63,15 @@ public SysRole setModelId(Integer modelId) {
6163 return this ;
6264 }
6365
66+ public String getModelName () {
67+ return modelName ;
68+ }
69+
70+ public SysRole setModelName (String modelName ) {
71+ this .modelName = modelName ;
72+ return this ;
73+ }
74+
6475 public Integer getSttId () {
6576 return sttId ;
6677 }
Original file line number Diff line number Diff line change 1010 </sql >
1111
1212 <sql id =" modelSql" >
13- model_config.configId AS modelId, model_config.provider AS modelProvider
13+ model_config.configId AS modelId, model_config.configName AS modelName, model_config. provider AS modelProvider
1414 </sql >
1515
1616 <sql id =" sttSql" >
You can’t perform that action at this time.
0 commit comments