Commit 57d4baac by 张祺

Merge branch 'hy-tobacco' of http://132.232.112.242:7090/zhangkb/indicators into hy-tobacco

parents bb065db8 8d882460
......@@ -93,6 +93,12 @@ public class ObjScoreRuleCtrl {
return scoreRuleService.getById(id);
}
@ApiOperation(value = "根据code获取所有单位评分规则", notes = "根据code获取所有单位评分规则")
@PostMapping(value = "/findAll")
public List<ScoreRule> findByCode(@RequestParam String code) {
return scoreRuleService.getAll(code);
}
@ApiOperation(value = "根据单位评分规则计算单位评分", notes = "根据单位评分规则计算单位评分")
@PostMapping(value = "/calculateObjectScore")
public void calculateObjectScore(
......
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