Package hotel.model

Examples of hotel.model.OrderInfo


        String roomid = rs.getString("roomid");
        int orderid2 = rs.getInt("orderid");
        int days = rs.getInt("days");
        int action = rs.getInt("action");
        float totalprices = rs.getFloat("totalprices");
        OrderInfo info = new OrderInfo();
        info.setUid(uid);
        info.setRoomNumber(roomid);
        info.setDays(days);
        info.setAction(action);
        info.setOrderId(orderid2);
        info.setTotalprices(totalprices);
        list.add(info);
      }
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
View Full Code Here

TOP

Related Classes of hotel.model.OrderInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.