roomtype.java~3~

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

JAVA~3~
39
字号
package com.xc.hotelmanager.hotel.model;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2006</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class RoomType {  public RoomType() {  }  String rtypeid=null;  String rtype=null;  int rprice=0;  public String getRtypeid(){    return rtypeid;  }  public void setRtypeid(String id){     this.rtypeid=id;  }  public String getRtype(){    return rtype;  }  public void setRtype(String type){    this.rtype=type;  }  public int getRprice(){     return rprice;  }  public void setRprice(int price){     this.rprice=price;  }}

⌨️ 快捷键说明

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