|
@@ -2038,7 +2038,7 @@ public class Neo4jAPI {
|
|
|
if (!"NULL".equals(option)) {
|
|
|
JSONObject rowDetail = new JSONObject();
|
|
|
rowDetail.put("detailName", option);
|
|
|
- rowDetail.put("score", Integer.valueOf(score));
|
|
|
+ rowDetail.put("score", Float.valueOf(score));
|
|
|
if (scaleItems.length > 0) {
|
|
|
JSONArray scaleItem = (JSONArray) JSONArray.toJSON(scaleItems);
|
|
|
for (int k = 0; k < scaleItem.size(); k++) {
|
|
@@ -2076,7 +2076,7 @@ public class Neo4jAPI {
|
|
|
if (!"NULL".equals(option)) {
|
|
|
JSONObject rowDetail = new JSONObject();
|
|
|
rowDetail.put("detailName", option);
|
|
|
- rowDetail.put("score", Integer.valueOf(score));
|
|
|
+ rowDetail.put("score", Float.valueOf(score));
|
|
|
if (scaleItems.length > 0) {
|
|
|
JSONArray scaleItem = (JSONArray) JSONArray.toJSON(scaleItems);
|
|
|
for (int k = 0; k < scaleItem.size(); k++) {
|
|
@@ -2122,7 +2122,7 @@ public class Neo4jAPI {
|
|
|
if (!"NULL".equals(option)) {
|
|
|
JSONObject rowDetail = new JSONObject();
|
|
|
rowDetail.put("detailName", option);
|
|
|
- rowDetail.put("score", Integer.valueOf(score));
|
|
|
+ rowDetail.put("score", Float.valueOf(score));
|
|
|
if (scaleItems.length > 0) {
|
|
|
JSONArray scaleItem = (JSONArray) JSONArray.toJSON(scaleItems);
|
|
|
for (int k = 0; k < scaleItem.size(); k++) {
|