风控中心加风控对象属性-部门

This commit is contained in:
yss
2023-01-11 16:11:43 +08:00
parent c096968642
commit 27c5ba10b1
2 changed files with 7 additions and 0 deletions

View File

@ -49,6 +49,10 @@ public class RiskManageRegulationGroupApply implements Serializable {
private String cityOu;
@ApiModelProperty("市名")
private String cityName;
@ApiModelProperty("部门ou")
private String departmentOu;
@ApiModelProperty("部门名")
private String departmentName;
@ApiModelProperty("应用规则所需的参数")
private List<RiskManageRegulationGroupOuterVO> outerVoList;

View File

@ -58,6 +58,9 @@ public class RiskManageServiceImpl implements IRiskManageService {
//项目所属市
regulationGroupApply.setCityOu(Objects.isNull(params.get("cityOu"))?"":params.get("cityOu").toString());
regulationGroupApply.setCityName(Objects.isNull(params.get("cityName"))?"":params.get("cityName").toString());
//项目所属市
regulationGroupApply.setDepartmentOu(Objects.isNull(params.get("departmentOu"))?"":params.get("departmentOu").toString());
regulationGroupApply.setDepartmentName(Objects.isNull(params.get("departmentName"))?"":params.get("departmentName").toString());
//模块分类
regulationGroupApply.setCallCategoryCode(regulation.getCallCategory());
regulationGroupApply.setCallCategoryName(regulation.getCallCategoryName());