Пример #1
0
 /**
  * 车辆入场 新增在场车辆记录
  *
  * @throws Exception
  */
 public void addCarEnter(TCarEnter tce) throws Exception {
   TCarEnterDao tedao = new TCarEnterDao();
   try {
     tedao.saveOrUpdate(tce);
   } catch (Exception e) {
     fireExceptionRecord("入场车辆记录信息新增异常", module);
     e.printStackTrace();
     throw e;
   }
 }