@Override
 public Object notifyRealNameCert(Map<String, String> data, NotifyHandler handler) {
   RealNameCertNotify notify = (RealNameCertNotify) executor.parseNotify("realNameCert", data);
   if (handler != null) {
     handler.handleNotify(notify);
   }
   return null;
 }
 @Override
 public DepositNotify notifyDeposit(Map<String, String> data, NotifyHandler handler) {
   // 收到即成功,失败的情况不会通知
   DepositNotify notify = (DepositNotify) executor.parseNotify("deposit", data);
   if (handler != null) {
     handler.handleNotify(notify);
   }
   return notify;
 }
 @Override
 public Object notifySignManyBank(Map<String, String> data, NotifyHandler handler) {
   // 收到即成功,失败的情况不会通知
   SignManyBankNotify notify = (SignManyBankNotify) executor.parseNotify("signManyBank", data);
   if (handler != null) {
     handler.handleNotify(notify);
   }
   return null;
 }
 @Override
 public TradePayPoolReverseNotify notifyTradePayPoolReverse(
     Map<String, String> data, NotifyHandler handler) {
   TradePayPoolReverseNotify notify =
       (TradePayPoolReverseNotify) executor.parseNotify("tradePayPoolReverse", data);
   if (handler != null) {
     handler.handleNotify(notify);
   }
   return notify;
 }