/**
  * 根据卡号 获取车辆入场记录
  *
  * @param cardid
  * @return
  * @throws Exception
  */
 public TCarEnter getCarEnterByCardid(String cardid) throws Exception {
   TCarEnter tce = null;
   TCarEnterDao tedao = new TCarEnterDao();
   try {
     tce = tedao.getCarEnterByCardid(cardid);
   } catch (Exception e) {
     fireExceptionRecord("获取入场信息异常", module);
     throw e;
   }
   return tce;
 }