tbreservation.java~6~

来自「用j2ee开发的一个旅店管理系统」· JAVA~6~ 代码 · 共 28 行

JAVA~6~
28
字号
package com.xc.hotelmanager.hotel.control.entity;import javax.ejb.*;import java.util.*;public interface TbReservation extends javax.ejb.EJBLocalObject {  public String getReid();  public void setCid(String cid);  public String getCid();  public void setCname(String cname);  public String getCname();  public void setRnum(String rnum);  public String getRnum();  public void setArrivetime(String arrivetime);  public String getArrivetime();  public void setDays(Integer days);  public Integer getDays();  public void setMembers(Integer members);  public Integer getMembers();  public void setPrepay(Integer prepay);  public Integer getPrepay();  public void setTbCustomer(TbCustomer tbCustomer);  public TbCustomer getTbCustomer();  public void setTbRoom(Collection tbRoom);  public Collection getTbRoom();  public void setRestuts(String restuts);  public String getRestuts();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?