bug:评分计算修改

This commit is contained in:
wxyclub
2023-11-07 22:44:01 +08:00
parent fe7e71962d
commit 509e8ff7a1
@@ -97,8 +97,8 @@ public class QualityEvaluationController extends BaseController<QualityEvaluatio
@ApiOperation("查询评价分数")
@GetMapping("getScore")
public ResponseMessage<Map<String,Double>> getScore(String lawId){
Map<String, Double> score = iQualityEvaluationService.getScore(lawId);
public ResponseMessage<String> getScore(String lawId){
String score = iQualityEvaluationService.getScore(lawId);
return Result.success(score);
}