@Override
 public void delNotifyConfig(String monitorId, Integer configType, String userId) {
   AlertNotifyConfigDomain configDomain = new AlertNotifyConfigDomain();
   configDomain.setMonitorId(monitorId);
   configDomain.setConfigType(configType);
   configDomain.setUserId(userId);
   this.getSqlSessionTemplate().update(context_space + ".del_notify_config", configDomain);
 }
 @Override
 public AlertNotifyConfigDomain getAlertNotifyConfig(
     String monitorId, Integer configType, String userId) {
   AlertNotifyConfigDomain configDomain = new AlertNotifyConfigDomain();
   configDomain.setMonitorId(monitorId);
   configDomain.setConfigType(configType);
   configDomain.setUserId(userId);
   return this.getSqlSessionTemplate()
       .selectOne(context_space + ".get_alert_notify_config", configDomain);
 }