|
@@ -115,7 +115,7 @@ public class TranslateController {
|
|
|
if (charCount < 10000) {
|
|
|
cost = 1; // 不满1000字符的费用为1
|
|
|
} else {
|
|
|
- cost = (int) Math.ceil(charCount / 10000.0 );
|
|
|
+ cost = (int) Math.ceil(charCount / 5000.0 );
|
|
|
}
|
|
|
if(!checkPoint(vo, cost)){
|
|
|
TranslateResult<Map<String,Integer>> result = new TranslateResult<Map<String,Integer>>();
|