public void transAddTblBkePanBlkbill(TblBkePanBlkbill tblBkePanBlkbill) throws DomainException { logger.info("\n卡号黑名单新增开始"); this.tblBkePanBlkbillDAO.save(tblBkePanBlkbill); logger.info("\n卡号黑名单新增结束"); // 记录日志 LogService.execute(tblBkePanBlkbill, "", FunctionCode.BLQ_2, SysPrmConstant.LOG_OPER_TP_01); }
public void transDelTblBkePanBlkbill(long seqId) throws DomainException { logger.info("\n卡号黑名单删除开始"); TblBkePanBlkbill tblBkePanBlkbill = this.tblBkePanBlkbillDAO.get(seqId); if (null == tblBkePanBlkbill) { throw new DomainException(FunctionCode.BLQ_2 + ConsoleErrorCode.CSL_ERROR_00); } this.tblBkePanBlkbillDAO.delete(tblBkePanBlkbill); logger.info("\n卡号黑名单删除结束"); // 记录日志 LogService.execute(tblBkePanBlkbill, "", FunctionCode.BLQ_2, SysPrmConstant.LOG_OPER_TP_02); }