/**
  * @param array $data
  * @return bool
  */
 public static function insertBalanceLogSub($parentLogId, $userId, $accountId, $amount, $logType, $note, $createTime, $balanceLogId)
 {
     return Model_Log_AccountBalanceLogSub::insertBalanceLogSub(array('parentLogId' => $parentLogId, 'userId' => $userId, 'accountId' => $accountId, 'amount' => $amount, 'logType' => $logType, 'note' => $note, 'createTime' => $createTime, 'balanceLogId' => $balanceLogId));
 }