|
@@ -713,7 +713,7 @@ func (this *BaseFromUsdaFasController) UsdaFasNameCheck() {
|
|
codeMaxT := 30
|
|
codeMaxT := 30
|
|
codeLen := len(req)
|
|
codeLen := len(req)
|
|
if codeLen > codeMaxT {
|
|
if codeLen > codeMaxT {
|
|
- br.Msg = fmt.Sprintf("最多只能选择%d个指标", codeMaxT)
|
|
|
|
|
|
+ br.Msg = "批量添加指标数量不得超过30个"
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1383,7 +1383,7 @@ func (c *BaseFromUsdaFasController) BatchAddEdbCheck() {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if len(list) >= codeMaxT {
|
|
if len(list) >= codeMaxT {
|
|
- br.Msg = "最多只能添加30条数据"
|
|
|
|
|
|
+ br.Msg = "批量添加指标数量不得超过30个"
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|