风控中心加风控对象属性-部门
This commit is contained in:
@ -49,6 +49,10 @@ public class RiskManageRegulationGroupApply implements Serializable {
|
|||||||
private String cityOu;
|
private String cityOu;
|
||||||
@ApiModelProperty("市名")
|
@ApiModelProperty("市名")
|
||||||
private String cityName;
|
private String cityName;
|
||||||
|
@ApiModelProperty("部门ou")
|
||||||
|
private String departmentOu;
|
||||||
|
@ApiModelProperty("部门名")
|
||||||
|
private String departmentName;
|
||||||
|
|
||||||
@ApiModelProperty("应用规则所需的参数")
|
@ApiModelProperty("应用规则所需的参数")
|
||||||
private List<RiskManageRegulationGroupOuterVO> outerVoList;
|
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.setCityOu(Objects.isNull(params.get("cityOu"))?"":params.get("cityOu").toString());
|
||||||
regulationGroupApply.setCityName(Objects.isNull(params.get("cityName"))?"":params.get("cityName").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.setCallCategoryCode(regulation.getCallCategory());
|
||||||
regulationGroupApply.setCallCategoryName(regulation.getCallCategoryName());
|
regulationGroupApply.setCallCategoryName(regulation.getCallCategoryName());
|
||||||
|
Reference in New Issue
Block a user