public boolean update(TransportListVO o) { try { return this.transportData.update(o.toPO()); } catch (RemoteException e) { e.printStackTrace(); } return false; }
public boolean creat(TransportListVO o) { TransportListPO newPO = o.toPO(); try { return transportData.add(newPO); } catch (RemoteException e) { e.printStackTrace(); return false; } }