⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 resbean.java

📁 小型简单的旅馆预订系统. 客户:预定,更改,撤销,会员积分累积,查询预定,会员. 后台:会员更改,房间更改,预定更改,预定信息统计.
💻 JAVA
字号:
package servlet;

public class resBean
{
	String billID,payID,resID,username,fname,lname,dob,contact,price,discount,flprice,startDate,endDate,roomType,message;

	public resBean()
	{
		billID="default";
		payID="default";
		resID="default";
		username="default";
		fname="default";
		lname="default";
		dob="default";
		contact="default";
		price="default";
		discount="default";
		flprice="default";
		startDate="default";
		endDate="default";
		roomType="default";
		message=" ";
	}
	public void init()
	{
		this.setBillID("default");
		this.setPayID("default");
		this.setResID("default");
		this.setUsername("default");
		this.setFname("default");
		this.setLname("default");
		this.setDob("default");
		this.setContact("default");
		this.setPrice("default");
		this.setDiscount("default");
		this.setFlprice("default");
		this.setStartDate("default");
		this.setEndDate("default");
		this.setRoomType("default");
		this.setMessage(" ");
	}
	
	public String getMessage()
	{
		return message;
	}
	public void setMessage(String message)
	{
		this.message = message;
	}
	public String getBillID()
	{
		return billID;
	}

	public void setBillID(String billID)
	{
		this.billID = billID;
	}

	public String getPayID()
	{
		return payID;
	}

	public void setPayID(String payID)
	{
		this.payID = payID;
	}

	public String getResID()
	{
		return resID;
	}

	public void setResID(String resID)
	{
		this.resID = resID;
	}

	public String getUsername()
	{
		return username;
	}

	public void setUsername(String username)
	{
		this.username = username;
	}

	public String getFname()
	{
		return fname;
	}

	public void setFname(String fname)
	{
		this.fname = fname;
	}

	public String getLname()
	{
		return lname;
	}

	public void setLname(String lname)
	{
		this.lname = lname;
	}

	public String getDob()
	{
		return dob;
	}

	public void setDob(String dob)
	{
		this.dob = dob;
	}

	public String getContact()
	{
		return contact;
	}

	public void setContact(String contact)
	{
		this.contact = contact;
	}

	public String getPrice()
	{
		return price;
	}

	public void setPrice(String price)
	{
		this.price = price;
	}

	public String getDiscount()
	{
		return discount;
	}

	public void setDiscount(String discount)
	{
		this.discount = discount;
	}

	public String getFlprice()
	{
		return flprice;
	}

	public void setFlprice(String flprice)
	{
		this.flprice = flprice;
	}

	public String getStartDate()
	{
		return startDate;
	}

	public void setStartDate(String startDate)
	{
		this.startDate = startDate;
	}

	public String getEndDate()
	{
		return endDate;
	}

	public void setEndDate(String endDate)
	{
		this.endDate = endDate;
	}

	public String getRoomType()
	{
		return roomType;
	}

	public void setRoomType(String roomType)
	{
		this.roomType = roomType;
	}
	

}

⌨️ 快捷键说明

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