Commit 38558a01 authored by Quxl's avatar Quxl

x

parent 1b4c1d6b
...@@ -423,7 +423,7 @@ public class ReviewServiceImpl implements ReviewService { ...@@ -423,7 +423,7 @@ public class ReviewServiceImpl implements ReviewService {
Integer user_group_id = (Integer)map.get("user_group_id"); Integer user_group_id = (Integer)map.get("user_group_id");
String ext_type = (String)map.get("ext_type"); String ext_type = (String)map.get("ext_type");
String ext_name = (String)map.get("ext_name"); String ext_name = (String)map.get("ext_name");
BigDecimal ext_score = ((BigDecimal)map.get("ext_score")).setScale(2, BigDecimal.ROUND_HALF_UP); BigDecimal ext_score = BigDecimal.valueOf((Double)map.get("ext_score")).setScale(2, BigDecimal.ROUND_HALF_UP);
String setScoreFildName = "item_" + ext_type; String setScoreFildName = "item_" + ext_type;
String setDataFieldName = "item_" + ext_type + "_data"; String setDataFieldName = "item_" + ext_type + "_data";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment