|
|
|
@ -815,4 +815,13 @@ public class RiskBusinessServiceImpl implements RiskBusinessService, ManagerTodo
|
|
|
|
|
result.put("description", material.getString("description"));
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public JSONObject updateIsSendClient(String riskId) {
|
|
|
|
|
JSONObject event = riskEventMapper.findById(riskId);
|
|
|
|
|
event.put("is_send_client", 1);
|
|
|
|
|
riskEventMapper.update(event);
|
|
|
|
|
event = riskEventMapper.findById(riskId);
|
|
|
|
|
return event;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|