Merge branch 'master-风控中心加属性' into uat_code
This commit is contained in:
@ -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;
|
||||
|
@ -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());
|
||||
|
Reference in New Issue
Block a user